The path-manipulation tag has no wiki summary.
6
votes
3answers
660 views
Path Manipulation (security vulnerability)
A Fortify security review informed us of some path manipulation vulnerabilities. Most have been obvious and easy fixes, but I don't understand how to fix the following one.
string[] wsdlFiles = ...
3
votes
1answer
195 views
Long- and Multi-format Path Manipulation Library?
Is there any path open-source manipulation library which supports all of the following?
Unrestricted path lengths (i.e. the only restriction should be from the range of size_t, not arbitrary ...
1
vote
3answers
184 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 ...
15
votes
3answers
1k 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 ...
4
votes
5answers
2k 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.
9
votes
5answers
13k 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
228 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
3answers
581 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 ...