Tagged Questions
13
votes
5answers
206 views
Easiest way in C# to find out if an app is running from a network drive?
I want to programmatically find out if my application is running from a network drive. What is the simplest way of doing that? It should support both UNC paths (\\127.0.0.1\d$) and mapped network ...
9
votes
2answers
224 views
Programmatically determine user who last modified file on Windows?
I've been tasked with writing a simple command line utility in C# that will monitor a directory on a server that several users will be accessing to copy/cut/paste/view data. I used FileSystemWatcher ...
2
votes
2answers
241 views
Rename a mapped drive with shell API
How can I change the friendly name of a mapped drive using the Windows shell API and C#? My actual problem is that I am dealing with a disconected network drive without a UNC path, so the only way to ...
2
votes
2answers
255 views
How to read an Excel file from a network drive?
I have a dotnet 2.0 C#/web application.
I am able to manually go into a network drive and get a template from that. But through my application, when I try to access this file..it says "access ...
2
votes
7answers
9k views
How does one map network drive from windows service?
I'm trying to map network drive from windows service, I use batch file for executing the following command
NET USE U: \\192.168.55.6\folder password
While executing batch file either in service ...
1
vote
2answers
397 views
Mapping FTP and SFTP as Network Drive in Windows programmatically (Network redirector)
I have been assigned an internal task that i need to write a Windows App in C# that, when user input their username and password, Windows magically map the FTP or SFTP folder as a network drive.
I ...
1
vote
2answers
854 views
check if network drive exists with timeout in c#
i created a windows service that move files around between the server's hard drive (where the service is installed) to the network drive mapped in the server. one of the problems I encountered while ...
0
votes
1answer
55 views
Copy files between 2 protected sources that are not in the same Domain
I have a small deploy tool that I'm upgrading. The tool takes a version of code from the build box, updates SVN, and then plops it on X servers (A deploy moves specific parts of the deploy installs ...
0
votes
1answer
807 views
How to programmatically check/set access permissions to a network drive?
How do you check to see if you have access (yet - because it will work fine after you have navigated there at least once before in this windows session and entered name/pass) to a network drive ...