E
eyal
Hi,
I'm trying to do this:
private void SetNF(FileSystemWatcher fsw,int val){
if( (val&4)!=0 )
fsw.NotifyFilter |= System.IO.NotifyFilters.Attributes;
// i'v tried this also:
// if( (val&4)!=0 )
fsw.NotifyFilter = System.IO.NotifyFilters.Attributes;
}
and i get this EXCEPTION:
An unhandled exception of type 'System.ArgumentException' occurred in mscorlib.dll
Additional information: The path is not of a legal form.
Please Help.
I'm trying to do this:
private void SetNF(FileSystemWatcher fsw,int val){
if( (val&4)!=0 )
fsw.NotifyFilter |= System.IO.NotifyFilters.Attributes;
// i'v tried this also:
// if( (val&4)!=0 )
fsw.NotifyFilter = System.IO.NotifyFilters.Attributes;
}
and i get this EXCEPTION:
An unhandled exception of type 'System.ArgumentException' occurred in mscorlib.dll
Additional information: The path is not of a legal form.
Please Help.