Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have that string ...

C:\Users\ApplicationData\Folder1\Myapp.exe

How could i cut like:

C:\Users\ApplicationData\Folder1

I have tried s.split("\Myapp.exe") , where s is C:\Users\ApplicationData\Folder1\Myapp.exe

Plase help me, thanks.

share|improve this question

2 Answers

up vote 11 down vote accepted

Use the Path class:

Path.GetDirectoryName("C:\Users\ApplicationData\Folder1\Myapp.exe")

Check it here:

share|improve this answer
@Meta-Knight Thanks, I didn't know that, I've been out of VB.NET for a long time. – Matías Fidemraizer Dec 19 '12 at 13:58

you can use the System.IO.FileInfo class.
It contains a function FullName, which returns the directory full name. check this link

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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