Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
2answers
2k views

File separator vs pathseparator

One is called a "name-separator" and the other a "path-separator" right here. What's the difference? When to use which one?
6
votes
3answers
364 views

Get directory separator char on Windows? ('\', '/', etc.)

tl;dr: How do I ask Windows what the current directory separator character on the system is? Different versions of Windows seem to behave differently (e.g. \ and / both work on the English ...
5
votes
1answer
2k views

Path separator char in python 2.4

Just out of curiosity - is there another way to obtain the platform's path separator char than os.path.normcase('/') in Python 2.4? I was expecting something like a os.path.separator constant...
3
votes
3answers
167 views

Get file separator in Fortran

Could you please tell me how to get the file separator of current operating system, for example \ in Windows and / in Unix, in Fortran at run-time.
1
vote
2answers
178 views

C# Bilingual Directory Separator Character for Non-English Windows

I am trying to create-read/write a file into a subfolder of the users AppData\Roaming folder: string fileloc = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), ...
1
vote
2answers
270 views

Simple way of converting slashes in a Makefile?

I need to convert all paths with '\' in them to '/'. The makefile is quite long and doing this manually is impossible. Is there some way to quickly convert them? Keep in mind that a global replace is ...
0
votes
0answers
102 views

PHP directory separators & inconsistencies

I run PHP on my Windows 7 dev box. I've noticed that paths produced from the $_SERVER array always use forward slashes, whereas other sources such as __FILE__ use back slashes. Now, I'm assuming that ...
0
votes
2answers
357 views

Is there QPath::Combine in QT4?

I need a similar to .NET method for safely combining path parts without worrying for platform specifics of the path separator. Is there such class and method in QT4? Something like: QPath::Combine ...
0
votes
1answer
810 views

Silverlight file path separator issue

I find when reading from a local file from Silverlight, we have to use special path separator "/" other than normal path separator "\" or else Silverlight can not get related local file, for example ...