.NET Tutorials, Forums, Interview Questions And Answers
HomeTutorialArticlesForumInterview QuestionCode SnippetsTechnology NewsFun Zone Poll Certification Search
Welcome :Guest
 
Sign In
Register
 
Win Surprise Gifts!!!
Congratulations!!!


Home >> Code Snippets >> File Operation >> Post New Resource Bookmark and Share

 Subscribe to Code Snippets

Get File extension from full file path

Posted By :Amit Mehra      Posted Date :07/02/2010   Points :10   Category: File Operation    URL: http://www.dotnetspark.com

This code sample will give you the file extension from full file path. Sometimes we need to get the extension from the path for eg. if you need to validate the file extension to upload the files.
    


This code sample will give you the file extension from full file path. Sometimes we need to get the extension from the path for eg. if you need to validate the file extension to upload the files or move only the file with particular file extension. like only .gif or jpg only you want to upload than you can use GetExtension() method of Path class from System.IO namespace

string fileName = Path.GetExtension(@"c:\MyFolder\MyFile.txt");

Response.Write(fileName);

and the result will be

.txt

 


Featured Articles


Design Pattern Interview Questions Part (3)
Software Architecture Interview Questions Part 3 State Pattern, Stratergy pattern,Visitor pattern, Adapter and fly weight ... Read More
Software Architecture Interview Questions Part 4- Design Patterns
(A) Can you explain bridge pattern? (A) Can you explain composite pattern? (I) Can you explain decorator pattern ? (A) Can you explain Façade pattern? (A) Can you explain chain of responsibility ( COR)? (I) Can you explain proxy pattern? (B) Can you explain template pattern? ... Read More
UML Interview Question Part 1
(B) Define UML? (I) Can you explain use case diagrams? (I) Can you explain primary and secondary actors? (I) How does a simple use case look like? (I) Can you explain 'Extend' and 'Include' in use cases? (I) Can you explain class diagrams? (B) How do we represent private, public and protected in class diagrams? (I) what does associations in a class diagram mean? (I) Can you explain aggregation and composition in class diagrams? (A) What are composite structure diagram and reflexive association in class diagrams? ... Read More
Responses
No response found. Be the first to respond this post
Post Comment
You must Sign In To post reply
Find More code samples in C#, ASP.Net, Vb.Net and more Here

Hall of Fame    Terms of Service    Privacy Policy    Contact Us    Archives   Tell A Friend