Thanks, that's good to know.
Actually, I was looking for a way to automatically construct the full path
to a file. For example, in python, one can do:
>>> from os.path import join
> >>> fileName = join('~', 'Code', 'MyCode.py')
> >>> fileName
> '~/Code/MyCode.py'
(on Mac)
The analogous function in Matlab is fullfile.
Is there a way to do this in Julia that does not require one to keep track
of the correct filename separator for different OS's?
On Monday, May 5, 2014 4:26:30 PM UTC-6, Ethan Anderes wrote:
>
> Is this what you want:
>
> readdir(homedir())
>