0
votes
4answers
101 views
How do I find the path of my running .net executable [closed]
Possible Duplicates:
Detecting the startup path of a C# windows form application
How to get installation path of an application.?
Get the application’s path
I wa …
1
vote
5answers
51 views
How does filepaths in php work?
Hi.
The problem is that I use the method file _ get _ contents("body.html") in a class that is in the same folder as body.html. The problem is that I get an error saying that the …
0
votes
1answer
41 views
Using Named Pipes as Files
Simple question here (though perhaps not such a simple answer):
Is it possible to specify a path for an (existing) named pipe that can be used by programs as if they were opening …
0
votes
3answers
111 views
Visual Studio - Unit tests loading resources in the project
Consider a VS Test project looking like this:
The goal is to run some tests given some data in those Xml files.
How would you easily load a given Xml file into an XmlDoc within …
0
votes
1answer
119 views
AS3 - playing video within a loaded swf
My file structure is this:
main.swf
/swf/child.swf
/video/testvideo.flv
When I compile the child.swf by itself, it loads and plays video just fine (using netStream.play(../video/t …
-1
votes
5answers
180 views
Windows Command Line: Get Directory from File Path? [closed]
Possible Duplicate:
How do I get the equivalent of dirname() in a batch file?
In the Windows command line, given the path of a file, how might I go about extracting just t …
1
vote
1answer
79 views
How to determine if 2 paths reference the same file in portable C++
Hello. I was wondering if there is a portable way to determine if 2 different paths actually reference the same file.
I have read this thread but is Windows-specific.
AFAIK, fstr …
0
votes
3answers
223 views
How to get the current startup project’s physical location in VB.NET or C#?
I want the location of the current execution project i.e in VB.NET/C# or the current class file's path?
Ok,let me elaborate i got 2 projects in one solution file,lets say A,B are …
0
votes
4answers
2k views
How to Set SSIS package dynamic .mdb connection When Running Package from .NET Application
Hello,
I am currently working on a VB.NET desktop application that uses .mdb (Access) database files on the backend. The .mdb files are opened and edited in the VB.NET app. Once …
1
vote
2answers
99 views
How can one get a canonical file path in .NET?
Dear ladies and sirs.
How can one with minimal effort (using some already existing facility, if possible) to convert paths like c:\aaa\bbb\..\ccc to c:\aaa\ccc ?
1
vote
4answers
183 views
Regular expression for file path which doesn’t allow parent directories
I'm looking to write a regex for a file path that must start with some prefix. In this case it should start with '/tank/home/'. I also want to make sure that it contains no '/..' - …
0
votes
1answer
167 views
How can I make the relative paths to JS & SWF files in HTML work?
I have created a simple flash menu and the SWF file, JS files (swfoject.js and flying.js) & XML files are in a folder called "icpmenu_es" on the server root. If I open the SWF …
1
vote
4answers
159 views
Getting the path to the directory of a given class file
I was confronted with code which tries to read some configuration files from the same directory where the .class file for the class itself is:
File[] configFiles = new File(
t …
0
votes
3answers
658 views
Parsing XML files with Java and spaces in file path
I have files on my file system, on Windows XP. I want to parse them using Java (JRE 1.6).
Problem is, I don't understand how Java and Xerces work together when the file path has s …
4
votes
2answers
404 views
Java : File.toURI().toURL() on Windows file
The system I'm running on is Windows XP, with JRE 1.6.
I do this :
public static void main(String[] args) {
try {
System.out.println(new File("C:\\test a.xml").toURI …
