How do I get the directory from a file's full path?

Even Mien

What is the simplest way to get the directory that a file is in? I'm using this to set a working directory.

string filename = @"C:\MyDirectory\MyFile.bat";

In this example, I should get "C:\MyDirectory".

Jon Skeet

If you've definitely got an absolute path, use Path.GetDirectoryName(path).

If you might only get a relative name, use new FileInfo(path).Directory.FullName.

Note that Path and FileInfo are both found in the namespace System.IO.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

How do I get the full path of the current file's directory?

From Dev

How to get the directory of a file from the full path in C

From Dev

How to get the directory of a file from the full path in C

From Dev

Say I have a file's path, how do I reference that file's directory from the command line?

From Dev

How can I get file's name from variable with its full path in python?

From Dev

How do I open file or directory in terminal without typing the full directory path?

From Dev

How can i get from a FileInfo[] the file full name full directory including the file extension?

From Dev

How can i get from a FileInfo[] the file full name full directory including the file extension?

From Dev

How do i list the full path of certain file type in a directory and its subdirectories?

From Dev

How to get the full path of a directory

From Dev

How do I get a file's parent directory?

From Dev

How to get the current directory from the full path in Groovy?

From Dev

How do I remove all but the file name (with no extension) from a full file path?

From Dev

How can i get from a listView1 item(file) the file full path?

From Dev

How can I get file tile(name) from file full path in VB6?

From Dev

How do I get a document UTI from a file path?

From Dev

How do I get the full route path including the parameters from express or extend the request object to do so?

From Dev

C++ get full path to file in directory

From Dev

MVC: How to get full file path from file input field?

From Dev

get the full path of web service's methods from wsdl file

From Dev

How do I get the path of the last listed directory in a directory?

From Java

How to get full path of a file?

From Dev

how do i get a full path of a folder from google drive api with c#

From Java

Get file directory path from file path

From Dev

How do I make findstr show the full file path inline?

From Dev

How can I get the full path of a file in windows explorer?

From Dev

How do i get directory path, given a file name in Lua, which is platform independent

From Dev

How to show the full path of a file or directory in the terminal?

From Dev

How to show the full path of a file or directory in the terminal?

Related Related

  1. 1

    How do I get the full path of the current file's directory?

  2. 2

    How to get the directory of a file from the full path in C

  3. 3

    How to get the directory of a file from the full path in C

  4. 4

    Say I have a file's path, how do I reference that file's directory from the command line?

  5. 5

    How can I get file's name from variable with its full path in python?

  6. 6

    How do I open file or directory in terminal without typing the full directory path?

  7. 7

    How can i get from a FileInfo[] the file full name full directory including the file extension?

  8. 8

    How can i get from a FileInfo[] the file full name full directory including the file extension?

  9. 9

    How do i list the full path of certain file type in a directory and its subdirectories?

  10. 10

    How to get the full path of a directory

  11. 11

    How do I get a file's parent directory?

  12. 12

    How to get the current directory from the full path in Groovy?

  13. 13

    How do I remove all but the file name (with no extension) from a full file path?

  14. 14

    How can i get from a listView1 item(file) the file full path?

  15. 15

    How can I get file tile(name) from file full path in VB6?

  16. 16

    How do I get a document UTI from a file path?

  17. 17

    How do I get the full route path including the parameters from express or extend the request object to do so?

  18. 18

    C++ get full path to file in directory

  19. 19

    MVC: How to get full file path from file input field?

  20. 20

    get the full path of web service's methods from wsdl file

  21. 21

    How do I get the path of the last listed directory in a directory?

  22. 22

    How to get full path of a file?

  23. 23

    how do i get a full path of a folder from google drive api with c#

  24. 24

    Get file directory path from file path

  25. 25

    How do I make findstr show the full file path inline?

  26. 26

    How can I get the full path of a file in windows explorer?

  27. 27

    How do i get directory path, given a file name in Lua, which is platform independent

  28. 28

    How to show the full path of a file or directory in the terminal?

  29. 29

    How to show the full path of a file or directory in the terminal?

HotTag

Archive