Tagged Questions
The path-manipulation tag has no wiki summary.
8
votes
2answers
306 views
What is the correct way to join multiple path components into a single complete path in emacs lisp?
Suppose I have variables dir and file containing strings representing a directory and a filename, respectively . What is the proper way in emacs lisp to join them into a full path to the file?
For ...
8
votes
5answers
5k views
Python os.path.join on Windows
I am trying to learn python and am making a program that will output a script. I want to use os.path.join, but am pretty confused. According to the docs if I say:
os.path.join('c:', 'sourcedir')
...
3
votes
2answers
172 views
Code review: Determining whether a folder exists, given the full file path?
With a function being passed a full path to a file, such as C:\someFolder\anotherFolder\someXML.xml, determine whether the folder exists. Is there a smarter/better/more elegant way of doing this? ...
2
votes
5answers
208 views
how to get only the lastname of the directory, in python
I am using wxpython and python to develop a gui.
If I use the wx.dirdialog to get the directory like this:
/folderA/folderB/folderC/folderD/
how can I get string "folderD"?
Thanks in advance.
2
votes
3answers
405 views
Safe version of Path.Combine
I have a rootPath that I trust and a relativePath that I don't. I want to combine them in such a way that I can be sure that the result is under rootPath and that the user can't use .. to get back ...
1
vote
3answers
91 views
Manipulating paths in python
I am writing a python script 2.5 in Windows whose CurrentDir = C:\users\spring\projects\sw\demo\753\ver1.1\011\rev120\source my file is test.py. From this path I would like to access files in this ...