J
justme
hi
while using the glob function to check for wildcards eg,
while ( glob *.txt )
{
#do something with txt files...
}
how can i specify globbing those not *.txt?
is it something like this
while ( ! glob *.txt )
{
}
when i use this method , there is no output, even though there are
other files in the directory ...
thanks
while using the glob function to check for wildcards eg,
while ( glob *.txt )
{
#do something with txt files...
}
how can i specify globbing those not *.txt?
is it something like this
while ( ! glob *.txt )
{
}
when i use this method , there is no output, even though there are
other files in the directory ...
thanks