I have a problem where i have a file supposedly in a directory, but windows fails to see it ie explorer.exe i have ran ubuntu 10.10 live cd and ubuntu failed to see it also :O allthough each time i run any routine or program created by pb that i have it see`s the file "NFC.xml". so i wrote
Code: Select all
Directory$ = "C:\Program Files (x86)\Anywhere Software\Basic4android\Libraries\"
If ExamineDirectory(0, Directory$, "*.*")
While NextDirectoryEntry(0)
If DirectoryEntryType(0) = #PB_DirectoryEntry_File
FileAttributes = DirectoryEntryAttributes(0)
If FileAttributes <>32
Debug "This file is hidden "+ DirectoryEntryName(0)+" "+ Str(FileAttributes)
EndIf
Debug DirectoryEntryName(0) + " "+Str(FileAttributes)
Debug ""
EndIf
Wend
FinishDirectory(0)
EndIf
any help idea would be appreciated
zebuddi


