Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Cleaning up directories
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00552464
Message ID:
00552727
Views:
26
This message has been marked as the solution to the initial question of the thread.
>Hello all:
>
>my app has many files (residing in several sub-dirs) that are not beeing used by the project - Can anyone recommend a way to get rid of them or get a list?
>
>Thank you.

You can get the list of files in the project directory and subdirectories using program in Message #502789. You can get the list of files in the project by opening it as a table and run folowing select
use myproject.pjx
Select dist chrtran(PADR(name,60), Chr(0), "") as filename ;
  from myproject ;
  into cursor projectfiles
use
After that you can compare those two lists.
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform