How to Add file to the folder only if the file doesnt exist using C# - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T14:42:17Zhttp://stackoverflow.com/feeds/question/1063377http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1063377/how-to-add-file-to-the-folder-only-if-the-file-doesnt-exist-using-c0How to Add file to the folder only if the file doesnt exist using C#Aditya2009-06-30T12:27:06Z2009-06-30T12:38:29Z
<p>Hi,</p>
<p>I have a template file in a folder " c:\template_folder".</p>
<p>At runtime, I will create a new folder " c:\new_folder" and wish to copy the template file to the new_folder only if the file doesnt exist.</p>
<p>description:
for the first time, I will copy the template file to the new_folder and rename it with username... so that after first time the loop finishes, i will have 8 excel files with username as the name of the each file.</p>
<p>for the second loop, if I have to copy the template file to new_folder and rename it to the username, if the file with the user name already exists, then it shouldnt copy the file to the folder.</p>
<p>I am addin the snippet of the code for reference.</p>
<pre><code>foreach (FileInfo fi in templateFile)
{
string oldfilename = null;
string newfilename = null;
if (dir.Exists)
{
fi.CopyTo(Path.Combine(dir.ToString(), fi.Name));
FileInfo fileName = new FileInfo(fi.Name);
oldfilename = Path.Combine(dir.ToString(), fileName.ToString());
newfilename = Path.Combine(dir.ToString(), tempUserName + " " + "E" + tempUserID + " VIPv7.0.xls");
//if( !dir.ToString().Contains(newfilename))
foreach( FileInfo fileList in fileNames)
{
if (fileList.Exists == false)
File.Move(oldfilename, newfilename);
}
}
}
</code></pre>
<p>please help me in working this.</p>
<p>thanks
ramm </p>
http://stackoverflow.com/questions/1063377/how-to-add-file-to-the-folder-only-if-the-file-doesnt-exist-using-c/1063422#10634220Answer by SpaceghostAli for How to Add file to the folder only if the file doesnt exist using C#SpaceghostAli2009-06-30T12:37:46Z2009-06-30T12:37:46Z<p>You want to use File.Exists(path) instead of the commented out line to check if the file exists</p>
http://stackoverflow.com/questions/1063377/how-to-add-file-to-the-folder-only-if-the-file-doesnt-exist-using-c/1063427#10634272Answer by Joseph for How to Add file to the folder only if the file doesnt exist using C#Joseph2009-06-30T12:38:05Z2009-06-30T12:38:05Z<p>To conditionally move a file only if it doesn't already exist you would do it like this:</p>
<pre><code>if (!File.Exists(newfilename))
{
File.Move(oldfilename, newfilename);
}
</code></pre>
<p>Your code snippet confuses me, so I hope I've answered your question correctly. If I'm missing something please let me know.</p>
http://stackoverflow.com/questions/1063377/how-to-add-file-to-the-folder-only-if-the-file-doesnt-exist-using-c/1063430#10634302Answer by Philippe Leybaert for How to Add file to the folder only if the file doesnt exist using C#Philippe Leybaert2009-06-30T12:38:29Z2009-06-30T12:38:29Z<p>Your code doesn't seem correct to me (it doesn't compile), but you can check if a file exists by calling File.Exists(filename), so:</p>
<pre><code> foreach( FileInfo fileList in fileNames)
{
if (!File.Exists(newfilname))
File.Move(oldfilename, newfilename);
}
</code></pre>