Click here to Skip to main content
15,896,606 members

Comments by nidheeshkayal (Top 4 by date)

nidheeshkayal 15-Dec-11 5:52am View    
I need to save some files in to a folder while running the application.After that the application will do a read and write operation to that file. So that folder must have the read and write permission for any kind of users (admin, standard etc).
nidheeshkayal 18-Oct-11 7:06am View    
Hi,

Wrote the below code to check. But getting following error message

private void WriteToCard()
{

try
{
using (System.IO.Stream sourceStream = new System.IO.FileStream(@"C:\\Temp\\Test1.bin", System.IO.FileMode.Open))
{
if (sourceStream == null)
{
throw new Exception("Cannot open filestream to read from \"" + "\\\\.\\PhysicalDrive1");
}

using (System.IO.Stream writeStream = new System.IO.FileStream("\\\\.\\PhysicalDrive1", System.IO.FileMode.OpenOrCreate))
{
if (writeStream == null)
{
throw new Exception("Cannot open filestream to save to \"" + "\\\\.\\PhysicalDrive" + "1" + "\".");
}


byte[] buffer = new byte[4096];
sourceStream.Read(buffer, 0, buffer.Length);

writeStream.Write(buffer, 0, buffer.Length);
}
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}

and the exception is "FileStream will not open 32 bit devices such as disk partitions and tape drives. Avoid the use "\\.\" in teh application"

Thanks
Nidheesh
nidheeshkayal 7-Jun-11 4:37am View    
this is with VC++. i need C#.net code.

Thanks
nidheeshkayal 31-May-11 13:46pm View    
hi..

i tried the following

DirectoryInfo di = new DirectoryInfo(@"e:\\test");
if (di.Attributes == FileAttributes.ReadOnly)
{
MessageBox.Show("Read only");
}
else
{
MessageBox.Show("No");
}

but it returns "No" all the time.