<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;
charset=ISO-8859-1">
</head>
<body bgcolor="#ffffff" text="#000000">
<span class="Apple-style-span" style="border-collapse: separate;
color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-style:
normal; font-variant: normal; font-weight: normal; letter-spacing:
normal; line-height: normal; orphans: 2; text-indent: 0px;
text-transform: none; white-space: normal; widows: 2;
word-spacing: 0px; font-size: medium;"><span
class="Apple-style-span" style="color: rgb(51, 51, 51);
font-family: arial,sans-serif; font-size: 16px;"><span
class="hps" title="Cliquer ici pour voir d'autres traductions">Hi,<br>
<br>
is it possible</span><span class="Apple-converted-space"> </span><span
class="hps" title="Cliquer ici pour voir d'autres traductions">to
list the</span><span class="Apple-converted-space"> </span><span
class="hps" title="Cliquer ici pour voir d'autres traductions">subdirectories</span><span
class="Apple-converted-space"> </span><span class="hps"
title="Cliquer ici pour voir d'autres traductions">from a</span><span
class="Apple-converted-space"> </span><span class="hps"
title="Cliquer ici pour voir d'autres traductions">given
folder</span><span title="Cliquer ici pour voir d'autres
traductions" class="">?<br>
</span></span></span><span class="Apple-style-span"
style="border-collapse: separate; color: rgb(0, 0, 0);
font-family: 'Times New Roman'; font-style: normal; font-variant:
normal; font-weight: normal; letter-spacing: normal; line-height:
normal; orphans: 2; text-indent: 0px; text-transform: none;
white-space: normal; widows: 2; word-spacing: 0px; font-size:
medium;"><span class="Apple-style-span" style="color: rgb(51, 51,
51); font-family: arial,sans-serif; font-size: 16px;"><span
class="hps" title="Cliquer ici pour voir d'autres traductions">I
use</span><span class="Apple-converted-space"> </span><span
class="hps" title="Cliquer ici pour voir d'autres traductions">this
function</span><span class="Apple-converted-space"> </span><span
class="hps" title="Cliquer ici pour voir d'autres traductions">but
it</span><span class="Apple-converted-space"> </span><span
class="hps" title="Cliquer ici pour voir d'autres traductions">returns</span><span
class="Apple-converted-space"> </span><span class="hps"
title="Cliquer ici pour voir d'autres traductions">me</span><span
class="Apple-converted-space"> </span><span class="hps"
title="Cliquer ici pour voir d'autres traductions">the</span><span
class="Apple-converted-space"> </span><span class="hps"
title="Cliquer ici pour voir d'autres traductions">file</span><span
class="Apple-converted-space"> </span><span class="hps"
title="Cliquer ici pour voir d'autres traductions"></span><span
class="Apple-converted-space"> </span><span class="hps"
title="Cliquer ici pour voir d'autres traductions">in the</span><span
class="Apple-converted-space"> </span><span class="hps"
title="Cliquer ici pour voir d'autres traductions">current</span></span></span>
<span class="Apple-style-span" style="border-collapse: separate;
color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-style:
normal; font-variant: normal; font-weight: normal; letter-spacing:
normal; line-height: normal; orphans: 2; text-indent: 0px;
text-transform: none; white-space: normal; widows: 2;
word-spacing: 0px; font-size: medium;"><span
class="Apple-style-span" style="color: rgb(51, 51, 51);
font-family: arial,sans-serif; font-size: 16px;"><span
class="hps" title="Cliquer ici pour voir d'autres traductions">path</span><span
class="Apple-converted-space">.<br>
<br>
macro(list_subdirectories retval curdir return_relative)<br>
<br>
file(GLOB sub-dir RELATIVE ${curdir} *)<br>
set(list_of_dirs "")<br>
foreach(dir ${sub-dir})<br>
if(IS_DIRECTORY ${curdir}/${dir})<br>
if (${return_relative})<br>
set(list_of_dirs ${list_of_dirs} ${dir})<br>
else()<br>
set(list_of_dirs ${list_of_dirs} ${curdir}/${dir})<br>
endif()<br>
endif()<br>
endforeach()<br>
set(${retval} ${list_of_dirs})<br>
endmacro()<br>
<br>
</span></span></span><span class="Apple-style-span"
style="border-collapse: separate; color: rgb(0, 0, 0);
font-family: 'Times New Roman'; font-style: normal; font-variant:
normal; font-weight: normal; letter-spacing: normal; line-height:
normal; orphans: 2; text-indent: 0px; text-transform: none;
white-space: normal; widows: 2; word-spacing: 0px; font-size:
medium;"><span class="Apple-style-span" style="color: rgb(51, 51,
51); font-family: arial,sans-serif; font-size: 16px;"><span
class="hps" title="Cliquer ici pour voir d'autres traductions">I
can not</span><span class="Apple-converted-space"> </span><span
class="hps" title="Cliquer ici pour voir d'autres traductions">use
the</span><span class="Apple-converted-space"> </span><span
class="hps" title="Cliquer ici pour voir d'autres traductions">FILE</span><span
class="Apple-converted-space"> </span><span class="hps"
title="Cliquer ici pour voir d'autres traductions">() with</span><span
class="Apple-converted-space"> </span><span class="hps"
title="Cliquer ici pour voir d'autres traductions">a different
path</span><span class="Apple-converted-space"> </span><span
class="hps" title="Cliquer ici pour voir d'autres traductions">than</span><span
class="Apple-converted-space"> </span><span class="hps"
title="Cliquer ici pour voir d'autres traductions">the current</span><span
class="Apple-converted-space"> </span><span class="hps"
title="Cliquer ici pour voir d'autres traductions">path.</span><br>
<br>
<span class="hps" title="Cliquer ici pour voir d'autres
traductions">Thank you for</span><span
class="Apple-converted-space"> </span><span class="hps"
title="Cliquer ici pour voir d'autres traductions">your help</span></span></span><br>
<br>
</body>
</html>