active questions tagged network-drive - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T09:45:10Z http://stackoverflow.com/feeds/tag/network-drive http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/159627/keeping-visual-studio-projects-on-a-network-drive 3 Keeping Visual Studio Projects on a Network Drive Mike Wills 2008-10-01T20:46:17Z 2009-11-24T05:39:29Z <p>We just did a move from storing all files locally to a network drive. Problem is that is where my VS projects are also stored now. (No versioning system yet, working on that.) I know I heard of problems with doing this in the past, but never heard of a work-around. Is there a work around?</p> <p>So my VS is installed locally. The files are on a network drive. How can I get this to work?</p> <p>EDIT: I know what SHOULD be done, but is there a band-aid I can put on right now to fix this and maintain the network drive?</p> <p>EDIT 2: I am sure I am not understanding something, but <a href="http://stackoverflow.com/questions/159627/keeping-visual-studio-projects-on-a-network-drive#159702">Bob King</a> has the right idea. I'll work with the lead web developer when he gets back into the office to figure out a temporary solution until we get some sort of version control setup. Thanks for the ideas.</p> http://stackoverflow.com/questions/1787915/how-to-prevent-fileiopermissionexceptionand-others-when-run-net-application-fr 1 How to prevent FileIOPermissionException(and others) when run .NET application from network drive. Dennis Cheung 2009-11-24T05:03:32Z 2009-11-24T05:03:32Z <p>My C# application (.NET 3.5 SP1) works very well when if execeuted from local drive.</p> <p>However, if I run it from a network drive, it execute (IT IS .NET 3.5 SP1), but failed to read a file located on the same network drive, during <strong>File.ReadAllText</strong>.</p> <p>If it matter, the folder structure is like the following</p> <pre><code>\\server\myshare\ABC\app.exe \\server\myshare\DEF\xxx.txt </code></pre> <p>I guess this is some security feature applied by .NET, they remove the "execution" limit since SP1 but the rights is not as exactly as a local application, still.</p> <p>I've search around but I cannot find what's happening and what the limits are if you run it remotely.</p> <p>It is a CONSOLE APPLICATION with command line argument, if it matter.</p> http://stackoverflow.com/questions/1682629/mapping-an-sftp-connection-to-a-windows-drive 2 Mapping an sFTP connection to a Windows drive ? [closed] Nicolas 2009-11-05T18:34:31Z 2009-11-05T18:52:43Z <p>Hello,</p> <p>I'm looking for a way to map an sFTP connection to a Windows (Vista) drive. In other words, a tool that would add a new drive (let's say N:) to my computer, that would directly point to my remote server via sFTP.</p> <p>That way, "N:\my_dir\file.txt" would actually be something like "/home/user/my_dir/file.txt" on the remote server. Reading the file on Windows would download it, and writing content in it would upload it...network transfers being made via sFTP.</p> <p>I'm aware of Novell NetDrive, but it has various issues with long filenames, and seems to corrupt UTF-8 files content depending on the BOM. Do you know about any reliable alternative ?</p> <p>Thanks !</p> http://stackoverflow.com/questions/807627/how-to-programmatically-check-set-access-permissions-to-a-network-drive 0 How to programmatically check/set access permissions to a network drive? SnOrfus 2009-04-30T15:51:17Z 2009-04-30T15:59:27Z <p>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 without waiting for the IOException when trying to access it?</p> <p>And on that note, suppose that I can get my users name/pass via dialog, how do I set their access permissions to that network folder?</p> http://stackoverflow.com/questions/792868/how-does-one-map-network-drive-from-windows-service 0 How does one map network drive from windows service? Ahmed 2009-04-27T09:41:45Z 2009-04-28T09:03:04Z <p>I'm trying to map network drive from windows service, I use batch file for executing the following command</p> <pre><code>NET USE U: \\192.168.55.6\folder password </code></pre> <p>While executing batch file either in service constructor or in onstart event, drive is not mapped?</p> <pre><code> Process process = new Process(); process.StartInfo.FileName = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location) + "\\MAP.BAT"; process.StartInfo.CreateNoWindow = false; process.Start(); </code></pre> <p>How does one map network drive from windows service?</p>