System.IO is a namespace of the .NET framework. It contains types that allow reading and writing to files and data streams, and types that provide basic file and directory support.

learn more… | top users | synonyms

1
vote
3answers
51 views

How to validate a .csv file before storage in C#?

I have some .csv files which I am parsing before storing in database. I would like to make application more robust, and perform validation upon the .csv files before save in the database. So I am ...
0
votes
1answer
16 views

Storing pdf as tmp and pointing webbrowser to it

I am a bit confused as to how I point my webbrowser to a temporary PDF file.. If I point it to the PDF, I get a download box dialog asking me to download a file and invalid browser page. WebBrowser ...
0
votes
0answers
21 views

What are the different ways to transfer files from One Computer to another Computer using VB.NET?

I have seen scenario like Synchronize the files from one computer to another computer using VB.NET. I have a logic which will create a Folder if not exists and copy the files to that location.I have ...
-1
votes
1answer
68 views

System.IO.DirectoryNotFoundException: Could not find a part of the path 'E:\…'

When i want to clear the contents from a folder in ASP.NET, i keep on getting this error: Could not find a part of the path 'E:.....'. This is the exception: ...
1
vote
1answer
25 views

.NET Framework 4.0 System.IO reference missing Path Class

I've been reading some answers on stack overflow specifically.. Get file name from a path string in C#. My problem is that after I've added using System.IO; above the namespace. Then attempted to call ...
0
votes
0answers
45 views

Folder copy method with credentials that shows the current file being copied

As the title says, i'm looking for a method or class that will copy a folder remotely from one computer to another. I would also like to show the current file that is being copied in a label as well. ...
0
votes
2answers
53 views

What consumes less resources and is faster File.AppendText or File.WriteAllText storing first in StringBuilder?

I have to write thousands of dynamically generated lines to a text file. I have two choices, Which consumes less resources and is faster than the other? A. Using StringBuilder and File.WriteAllText ...
0
votes
1answer
48 views

C# Listing ZIP file contents - using ZipArchive Class

I would like to obtain a list of contents in a ZIP file using the 'ZipArchive' class. I am using an example from MSDN: using System; using System.Collections.Generic; using System.ComponentModel; ...
1
vote
1answer
145 views

My System.IO.File.WriteAllText coding doesn't create a file after it has once been deleted in Windows Explorer

CONCLUSION AT BOTTOM OF POST I'm a novice with C# and have only just begun using System.IO, but haven't been able to find information on my issue so wanted to ask the guys here: I have a program ...
0
votes
1answer
31 views

How to read and write to files in Mono

I am using Mono on Ubuntu 12.10. My application requires reading and writing from a text document and checking if specific files exist. I can't determine whether or not Mono supports this, but the ...
0
votes
1answer
52 views

Can't find text file

I'm trying to read some ints from a textfile in my XNA game. Now when I try this method in a console app it works just fine. However when I try this in my XNA game i get the following error: ...
0
votes
1answer
120 views

List all network printers per user

at my work, we install printers on the per user basis. I'm trying to write a backup program that would list all networked printers given a username. Is that at all possible ? via WMI or System.IO ...
5
votes
1answer
158 views

File.Copy error: The requested operation could not be completed due to a file system limitation

After getting more than 4000000 jpeg files in structure we've problem with adding new. File.Copy throw an exception: The requested operation could not be completed due to a file system limitation. ...
-1
votes
1answer
124 views

C# PInvoke to get ACL of files and folders by Win32 API

which PInvoke do I need to verify the permissions (CanRead, CanWrite, CanExecute...) for an UNC-Path(\UNC\?\ or \?\, Files and Folders). With System.IO I would use ...
0
votes
2answers
128 views

How to create a file from System.IO.Stream in metro apps?

Stream stream = await new HttpClient().GetStreamAsync( url ); How can i create a file in app's local folder having data downloaded through this stream as file content?
0
votes
1answer
96 views

SQL query for selecting directory and then deleting all files within it - C#

I need to delete all files in a directory (due to a gallery script that is keeping full size images but not using them!). I've written a bit of code that dumps the query into a DataTable and then ...
0
votes
4answers
108 views

VB.Net Search System Directory

I am attempting to add a searchbox to my application which will search a shared drive based on the entered criteria. The code I currently have is: Public Sub searchProcedure() Dim startFolder As ...
1
vote
3answers
89 views

Program not able to write to a newly made text file

After some great arguments made by other users in this question: How to write to a text file inside of the application, I decided to not use a resource file, instead create a file in a folder & ...
0
votes
1answer
129 views

NamedPipeServerStream in Mono

I am trying to convert C#.Net project into Mono. NamedPipeServerStream & NamedPipeClientStream class are not supporting in Mono and throwing Unhandle exception. Could you please help me anyone? ...
1
vote
1answer
238 views

System.IO.Compression and ZipFile - extract and overwrite

I'm using the standard VB.NET libraries for extracting and compressing files. It works as well but the problem comes when I have to extract and files exist already. Code I use Imports: Imports ...
2
votes
3answers
82 views

How are methods returning a Stream implemented?

The .NET framework is full of examples where a method call will return a Stream that you can then read and implement as you need to. But how does this work under the covers? What backs the stream? ...
0
votes
1answer
62 views

Reading the last line of a text file after FileSystemWatcher detects change

My earlier post was unreadable so. I am trying to read the last line of a text file every time it changes. The code I have is, private void fileSystemWatcherMCH1_Changed(object sender, ...
1
vote
2answers
68 views

How to Read a SortedList from a File?

I have a SortedList, the key is Contact.name and the value, is an object, Contact. I´m writing this list to a file, with BinaryWriter and I don´t have any trouble but now I want to read this list, and ...
0
votes
0answers
24 views

Why does FileInfo.IsReadOnly only exist in FileInfo but not in FileSystemInfo? [closed]

Is there a reason why Microsoft added the FileInfo.IsReadOnly property in FileInfo class, but not on FileSystemInfo where both FileInfo and DirectoryInfo can inherit it? It appears to me that the ...
1
vote
2answers
189 views

Best practise for using Directory.GetFiles() or EnumerateFiles with a target directory that contains locked files?

Currently I try to improve the design of two windows services (C#). Service A produces data exports (csv files) and writes them to a temporary directory. So the file is written to a temporary ...
0
votes
1answer
149 views

System.IO.File missing an assembly reference

I'm trying to read text file using System.IO.File.ReadAllLines-method but an error pops up saying The type or namespace 'File' does not exist in the namespace 'System.IO' (are you missing an ...
0
votes
1answer
117 views

File access denied changing permissions

I'm trying to do an auto-backup program that takes a folder and copies it into another folder. Pretty easy task : File.Copy(Source, Destination); Source is something like ...
3
votes
2answers
124 views

Last character of text file is not retrieved with System.IO

I tried to write a text file using OutputStream.Write but, I've noticed that the last character of the file is not being sent. Whether the file is 6KB or 242KB, the last character is skipped. ...
1
vote
1answer
59 views

Is there an Autofac Module for SystemWrapper in existence?

There is a .NET library for wrapping System calls named SystemWrapper. I'm using it to enable me to mock out System.IO calls in a project that uses Autofac. Rather than have to write out the ...
0
votes
1answer
74 views

how to set property value based on item and use that property as input of property function?

I am trying to set a property value based on Item But property doesn't seem to notice Item For example, my code is like <ItemGroup> <temp Include="test.txt"></temp> ...
-2
votes
1answer
540 views

File.Copy Access Denied [closed]

I have a problem with copying from local disk to flash. The code worked before, but after I create anoteher foreach loop and I had to create new objects, the File.Copy functionality isn't working ...
1
vote
1answer
423 views

.Net - Find all Networked Computer names and their shared folders

I'm wanting to find all the names of the computers that are currently on the same network. Once I have the names, I want to see if a shared directory named Shared\NetworkFiles exists. *Edited and ...
0
votes
1answer
61 views

Adding const keyword breaks Path.Combine call

No idea why when I change this: using System; using System.IO; public static class Constants { public static string MainCarFilePath = Path.Combine(Environment.CurrentDirectory, ...
3
votes
2answers
277 views

System.IO relative path

I am trying to read a file from my solution. I want to know how to locate the file using a relative path. My solution contains 3 projects. The file I want to read is located in project A, but the ...
0
votes
1answer
177 views

Windows 7 Libraries and Directory structure

I'm loading a treeview with directories and it's sub directories. My call to: string[] dirs = Directory.GetDirectories(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments)); returns all ...
0
votes
0answers
76 views

WCF Streaming data from database

I'm trying to find the best approach. I have a wcf service that streams data to client, and from client. In the client data is stored locally in a xml file(dataset). However in the service data is ...
2
votes
2answers
171 views

error CS0117: 'System.IO.File' does not contain a definition for 'Encrypt'

I'm writing a mobile application using Microsoft Visual Studio 2008 and need to encrypt a file. I tried to use a File.Encrypt method but it resulted in following error: error CS0117: ...
-2
votes
1answer
324 views

File.WriteAllText Doesn't Preserve Newline

The Output of this code string fileDateTime = "StepsGA-" + DateTime.Now.ToString("dd-MM-yyyy-HH-mm-ss") + ".txt"; string fname = System.IO.Path.Combine(System.Environment.CurrentDirectory, ...
0
votes
3answers
154 views

Writing Content of Textbox To .txt File

I want to write all the content of a textbox to a .txt file to the current directory. I wrote the following code however it throws a "wrong path name error". Where have I gone wrong? string ...
2
votes
3answers
190 views

string file path is not working c#

Okay I have spent an inordinate amount of time trying to solve what the posts i've read say is a simple fix. I want to write to a file in my documents and here is my code. string st = ...
0
votes
3answers
136 views

Replacing Text in File

I wrote a method that will go through all text files, replace text, and update a textbox with said changes. It works after I run it a first time, but subsequent executions seem to infer that the files ...
0
votes
2answers
88 views

using System.IO.Pipes.NamedPipeClientStream in a Sony Vegas Script

when i try to use a NamedPipeClientStream in a Sony Vegas Script i get the Exception The type or namespace name 'NamedPipeClientStream' could not be found (are you missing a using directive or an ...
0
votes
2answers
394 views

C# File.Copy throws exception “The given path's format is not supported”

string source = @"C:\Users\damanja\Desktop\Projects\RecStudentManagement\RecStudentManagement.Web\Reports\Templates\ContactInformationReport.xlsx"; string dest = ...
0
votes
0answers
23 views

How read USB device from .NET code? [duplicate]

Possible Duplicate: Read USB using .NET I just bought a Garmin GPS antenna that plugs into my laptop via USB port. I'm wanting to write .NET code to read the latitude/longitude from it. ...
1
vote
1answer
150 views

Cannot write to a file after reading it with IO.StreamReader

I am making an encryption program that also functions as a notepad (CryptoMatic). There is a Open function with the following code: Dim r As New StreamReader(filename) Dim text As String = ...
2
votes
3answers
373 views

file.exists always return false

I have an issue where file.exists aways returns false. situation: server 1 that executes file.exists has a mapped networkdrive to server 2 that is on a remote location. Accessing and browsing the ...
1
vote
3answers
421 views

What does “System.IO” mean in C#? [closed]

I'm in my first year studying .Net and came to the chapter, "An Introduction to the System.IO classes" I'm just curious to know what the .IO stands for. I do understand that this is learning about ...
0
votes
1answer
1k views

Logon failure: unknown user name or bad password.error while accessing other server

I'm accessing other server with the login credentials. My problem is if I run the code initially, it wil show the error as Logon failure: unknown user name or bad password but if I try running the ...
0
votes
1answer
324 views

Reading files using system.io?

Could do with some help with this question.I am using the system.io, and I have to do things which require files to be moved, grouped, renamed. . Working in command line application using c# so far ...
1
vote
6answers
203 views

C# using system.io not woking in my class but works in main

I am working on an issue I do not remember ever having before. I am using VS2012 C# When i add using System.IO; to my main program everything works fine, however when I add it to my class file it ...

1 2 3 4 5