TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
ariez
NA
34
0
To open windows folder on webpage
Jun 16 2010 1:07 AM
This code is working fine but opening folder on windows explorer, what i want is to open the folder on webpage. The folder is present on a FTP server named "SAN".What changes should be made in this code?????
Thanx.......
//// Opening Respective Folder of a User ////
DirectoryInfo directories = new DirectoryInfo(@"C:\\Inetpub\\ftproot\\san\\");
DirectoryInfo[] folderList = directories.GetDirectories();
int folder_count = folderList.Length;
for ( int j = 0; j < folder_count; j++)
if (Convert.ToString(folderList[j]) == id.Text)
{
Process p = new Process();
string path = Path.Combine(@"C:\\Inetpub\\ftproot\\san\\",id.Text);
p.StartInfo.FileName = path;
p.Start();
}
Reply
Answers (
1
)
How can a text be wraped on a table cell
Can we develope Voice recognition mobile application in .Net using C#