vote up 0 vote down star

Given a System.IO.FileStream object, how can I get the original path to the file it's providing access to?

For example, in the MyStreamHandler() function below, I want to get back the path of the file that created the FileStream:

public static void Main() 
{
    string path = @"c:\temp\MyTest.txt";
    FileStream fs = File.Create(path));

    MyStreamHandler(fs);
    MyOtherStreamHandler(fs);

    fs.Close();
    fs.Dispose();
}

private static void MyStreamHandler(FileStream fs)
{
    // Get the originating path of 'fs'
} 

private static void MyOtherStreamHandler(FileStream fs)
{
}
flag

3 Answers

vote up 2 vote down check

The FileStream's Name property.

link|flag
Thanks for answering what was apparently an RTFM-type question. I did actually, but it wasn't obvious to me that Name got the path. – unknown (google) Jul 22 at 14:35
vote up 0 vote down

Name.

This was pretty easy to find. In fact, I didn't even have to search - I just typed the URL.

link|flag
vote up 0 vote down

You can use fs.Name to get the path.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.