The drive tag has no wiki summary.
3
votes
2answers
6k 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, ...
3
votes
1answer
4k 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 ...
0
votes
4answers
4k views
listing network shares with python
if I explicitly attempt to list the contents of a shared directory on a remote host using python on a windows machine, the operation succeeds, for example, the following snippet works fine:
...
3
votes
5answers
8k 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.
1
vote
3answers
4k 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 ...
8
votes
6answers
4k 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 ...
17
votes
1answer
2k 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 ...
8
votes
1answer
1k 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?
I figued out this but it doesn't work on mounted ...
10
votes
4answers
4k 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.)
1
vote
1answer
1k views
Google drive add meta data to file
I would like to use the googledrive api to search for files. I would like to add metadata to it.
Example:
File: computers1.pdf
Brand: brand1
File: computers2.pdf
Brand: brand2
...
1
vote
2answers
329 views
External Drive Letter - Backup
I am writing a PowerShell script that will back up several folders from my Vista drive to an external USB drive, using robocopy.
Windows does not guarantee that it will always assign the same drive ...
0
votes
0answers
60 views
How do i determine the stream size from an uploaded file from a website which i want to insert in Google Drive
I'm trying to upload files to Google Drive with ProgressListener and ChunkSize enabled (thus with DirectUploadEnabled disabled). This way i have a more reliable upload and the possibility for a ...
0
votes
2answers
104 views
how to access drive as certain google user
I am using appengine( python) and trying to manage a shared google drive directory for certain user. Can my program always access the drive without to go to authorize page, even when I am login as ...
0
votes
0answers
28 views
Bug with parents when changing document owner
I have a problem using drive. The result is the same in both drive sdk and drive web. I have a folder (1) shared with a user (X). The (X) user creates a new folder(2) into folder(1) and changes the ...
0
votes
2answers
464 views
Program to format every media in c++
Problem:
I'm trying to write a program that formats any type of media.
So far I've managed to format Hard disk partitions, flash memories, SDRAM, RDX.
But there's this last type of media (DVD-RAM) I ...
0
votes
1answer
173 views
Finding out which drive was booted in x86 bootloader
I'm writing a game bootloader for x86.
At one point, early in the booting, I need to load some sectors from my boot drive into memory. I do this with interrupt 0x13 (ah=02), and when I try it in my ...