Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
467 views

C# How to tell if DVD drive tray is open?

I have a DVD reading and burning app in C#. I want to be able to detect the difference between an empty drive (no disk) and an open drive. Edit: After some more googling, I think a better problem ...
9
votes
3answers
4k views

Acquiring drive names (as opposed to drive letters) in Java

On my Windows machine, my main hard drive has the letter C: and the name "Local disk". To list the drive letters in Java on Windows, the File object has the static listRoots() method. But I can't ...
8
votes
6answers
1k views

Get drive label in C#

When I use System.IO.DriveInfo.GetDrives() and look at the .VolumeLabel property of one of the drives, I see "PATRIOT XT", which is indeed the drive's volume label. If I open "My Computer", instead I ...
7
votes
1answer
453 views

Azure Blob storage vs Azure Drive

I am looking at moving to Windows Azure rather than typical hosting however I'm unsure how best to store images. After searching I've found that there are 2 possible solutions - Blob storage or Azure ...
7
votes
4answers
1k views

C# How to know if a given path represents a root drive?

How can I know if a given directory is a root drive? (aside from checking if its path equals to "A:", "B:", "C:", etc.)
6
votes
3answers
181 views

Detect drive mount event in c#

How to catch an event when a new drive is added to My Computer and preferably and when new mount point for some drive is created on a NTFS drive?
6
votes
6answers
2k views

How to Create a Virtual Windows Drive

I'm trying to create a Windows Virtual Drive ( like c:\ ) to map a remote storage. The main purpose is to do it in a clear way to the user. Therefore the user wouldn't know that he is writing/reading ...
4
votes
1answer
149 views

Statically link firebird driver for dbexpress

Is it possible to deploy zero-dll executable that connects to Firebird using dbExprss? If so, how? Cause I've tried to include DBXFirebird but the executable always needs dbxfb.dll. Thank ...
4
votes
2answers
324 views

Set Drive VolumeLabel

I am working on a small utility where I would like to change the volume label on flash drives that are connected to the computer. I know that DriveInfo is capable of doing it but I am at a loss as for ...
3
votes
2answers
207 views

Detecting if path is on a windows mapped network drive

Is there a simple way to tell if a given path lives on a mapped network drive? Or to tell if a given drive is a mapped network drive? I hoped they would have a reparse point attribute but ...
3
votes
2answers
696 views

How can I mount network drive in Mac OS X on Java?

I am writing a programme on JBuider 2005 on Windows XP platform for Mac OS X. Programme must launch on Mac OS X and programme turnes(directs) to share folders on other computer(Windows XP) in network. ...
2
votes
0answers
27 views

Limit Hard Drive Write Speed by User in Linux [migrated]

Background: I use a cluster with my coworkers and if anyone writes too many big files at the same time I can't even move the cursor in vim (the horror!). I'm not sure if it is more related to the ...
2
votes
3answers
102 views

How to get file physical location on hard drive

I want to make a file shedder to completely delete a file, by writting zeros to its physical areas. Files may be stored on hard drive in pieces, not always in a whole block. When I say physical ...
2
votes
2answers
98 views

Can not access sub directories without '\' (backward slash) in C#

I had a bizarre situation when try to access the sub directories of my c: drive: first I tried the following code, the output was 0 (zero): MessageBox.Show(new ...
2
votes
2answers
211 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
129 views

What API is available to create a Drive on the Windows File System?

I'm basically looking for an example of the API used by, for example, an external USB hard drive driver that adds a new Drive to the file system on Windows. Thanks!
2
votes
1answer
356 views

How to register newly mounted drive in git bash?

In my day-to-day work (I'm using MS Windows), I keep my git bash (actually using console2 for this) open for the whole day. It is also very frequent that I mount new drives that I would like to work ...
2
votes
1answer
230 views

Formatting usb flash drive on Mac OS X

How can I format an USB flash drive using cocoa frameworks or carbon? Is there any functions to make it?
2
votes
1answer
2k views

copy files to nework path or Drive using python

Mine is similar to this question. http://stackoverflow.com/questions/2042342/network-path-and-variables-in-python/2042376 The only difference is my network drive has a password protect with user ...
2
votes
4answers
4k views

Batch file to map a drive when the folder name contains spaces

I am trying to map a drive using a batch file. I have tried: net use m: \\Server01\myfolder /USER:mynetwork\Administrator "Mypassword" /persistent:yes It works fine. The problem comes when I try to ...
2
votes
1answer
1k views

how mount userdata.img or userdata-qemu.img in osx

Disk Utility in OSX easily mounts an SD Card image as a device, but not so the other img files. I want to get the database I just created in the Android Emulator off the drive and into my osx file ...
2
votes
2answers
1k views

how to map network drive for Clearcase View in Windows service?

I want to map a clearcase view on network drive inside a windows service. I have tried with net use command, but it did not work properly.
2
votes
1answer
958 views

How to format drive in FAT 16 format using VB.NET without user interaction

How to format drive in FAT 16 format using VB.NET without user interaction
2
votes
7answers
1k views

How to access specific raw data on disk from java

I'm trying to use the following code to access one byte with offset of 50 bytes in a raw disk. randomAccessFile = new RandomAccessFile("C:", "r"); randomAccessFile.seek(50); byte[] buffer = new ...
2
votes
2answers
3k views

Programatically ejecting and retracting the CD drive in vb.net or c#

Is there any way to do so? I know its possible to programmatically eject/retract the cd drive SOMEHOW, cause Roxio does that when it prompts me to insert a disk. Either c# or vb.net is preferable, ...
2
votes
5answers
4k views

What is the best way to map windows drives using Python?

What is the best way to map a network share to a windows drive using Python? This share also requires a username and password.
2
votes
2answers
552 views

SSD as inline cache

This may be slightly off-topic for a strictly programming site, but I'm interested in starting a software project or contributing to an existing project that can do what I'm proposing. Now that SSD ...
2
votes
2answers
935 views

C# dropbox of drives

I remember in vb6 there was a control that was similar to a dropbox/combobox that you can select the drive name. It raises an event which you can then set another control which enumerate files in ...
2
votes
3answers
375 views

What's a good system for storing hard drive images

I'd like to study the effects my software has on different OS environments. I've determined the best way to analyze the differences involves storing the entire hard drive image as soon as the ...
1
vote
1answer
90 views

PHP's exec() can't access network drive

In PHP, I list some file by calling exec("dir ..."). However, this strangely works only on local drives. On network drives it has non-zero result status code and no results are returned. I run Apache ...
1
vote
2answers
97 views

Detect network drive mount wmi

How to detect network drive mount event using wmi ? I'm mainly interested i something like Win32_VolumeChangeEvent just for network drives. _eventWatcher = new ManagementEventWatcher("SELECT * FROM ...
1
vote
3answers
163 views

Is Excel-driven testing possible through selenium?

Sahi allowed me to enter the desired functions into a spreadsheet and then it would run those functions. Different combinations would result in different scenarios.Can i do something similar using ...
1
vote
2answers
37 views

How do I delete svn tagged versions from server and keep them in the repository?

I've taken over a web application that is using Subversion. When the code is released, a tag is created in the repository, and then the 'svn update' command is used on the server to bring the release ...
1
vote
1answer
62 views

Be notified when folder contents changes - Objective-C

In my program I'd like to be notified when a user inserts a usb/firewire/etc drive in the computer. I don't know if there is a special way just for drives, but I think there should be a way with ...
1
vote
1answer
85 views

ManagementObject GetInstances() exception

Environment: Windows Forms Application, C# .NET 3.5, VS2008 When I call the following function from inside an overridden WndProc handler I get this exception on the mc.GetInstances() line ...
1
vote
0answers
78 views

How to write to multiple tape drives at the same time?

I'm trying to write a single stream to multiple tapes at the same time but I'm hitting a massive performance issue. OS : Windows 2008 R2 TapeDrive : 2 * ULT3580-HH4 HBA : Dell SAS 6gbps controller ...
1
vote
2answers
170 views

verilog driving signals on the same wire

I looked through internet and couldn't find a clear and concise answer to my question. I want to know what'll happen if I drive same strength signals onto the same wire, one of them being logic 1 and ...
1
vote
2answers
1k views

Current working directory in a batch file

I need some help in writing a batch file. I have a path stored in a variable root as follows: set root=D:\Work\Root Then I am changing my working directory to this root as: cd %root% When I ...
1
vote
2answers
288 views

JFileChooser - Starting at the 'Computer' e.g. C: D: E: drives

fileChooser.setCurrentDirectory(new java.io.File("C:\\")); Hi there, I'm trying to add the finishing touches to an application I've been developing and I'd really like it so my fileChooser sets the ...
1
vote
1answer
405 views

ATA PASS THROUGH DIRECT on SAS BUS in Windows XP

I want to send a "ATA Pass through Direct" command to a drive that is on the SAS(SATA attached SCSI) bus. The drive is SATA drive, in Windows XP(x86) envirnoment. I hoped there was a STP(SATA Tunneled ...
1
vote
4answers
308 views

Windows: What happens if I finish drive letters? (they are 26!)

What happens if I finish the drive letters? It's just curiosity, but I have a lot of letters and it happens that I float around 20 when I have everything connected
1
vote
1answer
356 views

Getting the drive name in Java

I'm making a basic file browser, and in one mode, it loops through the file roots and lists them. I have it get the icon, drive letter, last-modified date, drive name, and size in bytes. These all ...
1
vote
3answers
489 views

C# Create a virtual drive to run files from

How would I go about creating a secure virtual drive that only my program has access to and I can download and run programs. This would include it being invisible when you look at your drives on "My ...
1
vote
3answers
151 views

Configuring Eclipse .classpath for two different paths for the same entry

I'm wondering if there is a way (in Windows 7) to make some sort of mapping of drives so that sometimes you find the files in a network drive and sometimes you find them in a local map? -And to be ...
1
vote
0answers
141 views

JFileChooser - Not browsing through the 'Mounted Drives' in windows server 2008 machine

I use JFileChooser in one of my java tool to browse file locations. It has a problem in browsing into the mounted drives - We can just chose the mounted drive but cannot go to next level/open and ...
1
vote
1answer
417 views

Cannot write on a mapped drive using impersonation

Basically I'm running the same problem as this post http://stackoverflow.com/questions/2669672/accessing-mapped-drives-when-impersonating-in-asp-net I'm working on a legacy website and I need to ...
1
vote
2answers
258 views

setCurrentDrive? c++ win32

hello how can I set the current drive in c++? this is how I set the directory but i'm unable to change the drive like this(duh) but I cant find anything on the msdn site... anybody know this? ...
1
vote
2answers
222 views

Any free or open source virtual in-memory drive?

Any free or open source virtual in-memory drive? I'm developing an plug-in for a host program and I need to comminute with it with temporary files in the disk, if the temporary files are stored in an ...
1
vote
3answers
2k views

when getting drive information using java

i tried the following program import java.io.*; class dr { public static void main(String args[]) { try{ File[] roots = File.listRoots(); for (int index ...
1
vote
1answer
84 views

Start application from driver

HI, Can I start another application from a driver code? The code is written in C and compiled with DDK.

1 2 3