in reply to Re^2: chdir not working
in thread chdir not working
If the file system is case-insensitive, then chdir('data'), chdir('Data'), chdir('DATA'), etc will all switch to your data directory, however it was named at creation.
If the file system is case-sensitive, then only one of chdir('data'), chdir('Data'), chdir('DATA'), etc will switch to your data directory.
|
|---|