Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My source path is "c:/Music/" in which i have hundreds of folders called Album-1, Album-2 etc.

What i want to do is, create a folder called "Consolidated" in my source path. And i want to move all the files inside my albums to the folder "Consolidated". So that i get all the music files under one folder.

How can i do this ?

share|improve this question

8 Answers

up vote 7 down vote accepted

Try like this

        String l_sDirectoryName = "C:\\Consolidated";
        DirectoryInfo l_dDirInfo = new DirectoryInfo(l_sDirectoryName);
        if(l_dDirInfo.Exists ==false )
            Directory.CreateDirectory(l_sDirectoryName);
        List<String> MyMusicFiles = Directory.GetFiles("c:\\Music", "*.*", SearchOption.AllDirectories).ToList();
        foreach (string file in MyMusicFiles)
        {
            FileInfo mFile = new FileInfo(file);
            if(new FileInfo(l_dDirInfo +"\\"+ mFile.Name).Exists==false)//to remove name collusion
                 mFile.MoveTo(l_dDirInfo +"\\"+ mFile.Name);
        }

it will get all the files in the"C:\Music" folder(including files in the subfolder) and move that to the destination folder.SearchOption.AllDirectories will recursively search all the subfolders.

share|improve this answer
SearchOption.AllDirectories is not available on Compact Framework. But good answer. – One-One Oct 29 '12 at 11:57

Something like this should get you rolling. You'll have to add error checking and what not (What if there is a subdirectory of source named "Consolidated"? What if Consolidated already exists? Etc.) This is from memory, so pardon any syntax errors, etc.

string source = @"C:\Music";
string[] directories = Directory.GetDirectories(source);
string consolidated = Path.Combine(source, "Consolidated")
Directory.CreateDirectory(consolidated);
foreach(var directory in directories) {
    Directory.Move(directory, consolidated);
}
share|improve this answer
 public void MoveDirectory(string[] source, string target)
    {
        var stack = new Stack<Folders>();
        stack.Push(new Folders(source[0], target));
        while (stack.Count > 0)
        {
            var folders = stack.Pop();
            Directory.CreateDirectory(folders.Target);
            foreach (var file in Directory.GetFiles(folders.Source, "*.*"))
            {
                string targetFile = Path.Combine(folders.Target, Path.GetFileName(file));
                if (File.Exists(targetFile)) File.Delete(targetFile); File.Move(file, targetFile);
            }
            foreach (var folder in Directory.GetDirectories(folders.Source))
            {
                stack.Push(new Folders(folder, Path.Combine(folders.Target, Path.GetFileName(folder))));
            }
        }
        Directory.Delete(source[0], true);
    } 
}


public class Folders { 
    public string Source { 
        get; private set; 
    } 
    public string Target { 
        get; private set; 
    } 
    public Folders(string source, string target) { 
        Source = source; 
        Target = target; 
    } 
}
share|improve this answer

You can use the Directory object to do this, but you might run into problems if you have the same file name in multiple sub directories (e.g. album1\1.mp3, album2\1.mp3) so you might need a little extra logic to tack something unique onto the names (e.g. album1-1.mp4).

    public void CopyDir( string sourceFolder, string destFolder )
    {
        if (!Directory.Exists( destFolder ))
            Directory.CreateDirectory( destFolder );

        // Get Files & Copy
        string[] files = Directory.GetFiles( sourceFolder );
        foreach (string file in files)
        {
            string name = Path.GetFileName( file );

            // ADD Unique File Name Check to Below!!!!
            string dest = Path.Combine( destFolder, name );
            File.Copy( file, dest );
        }

        // Get dirs recursively and copy files
        string[] folders = Directory.GetDirectories( sourceFolder );
        foreach (string folder in folders)
        {
            string name = Path.GetFileName( folder );
            string dest = Path.Combine( destFolder, name );
            CopyDir( folder, dest );
        }
    }
share|improve this answer

Basically, that can be done with Directory.Move:

                try
                {
                    Directory.Move(source, destination);
                }
                catch { }

don't see any reason, why you shouldn't use this function. It's recursive and speed optimized

share|improve this answer
private void DirectoryCopy(
        string sourceDirName, string destDirName, bool copySubDirs)
    {
        DirectoryInfo dir = new DirectoryInfo(sourceDirName);
        DirectoryInfo[] dirs = dir.GetDirectories();

        // If the source directory does not exist, throw an exception.
        if (!dir.Exists)
        {
            throw new DirectoryNotFoundException(
                "Source directory does not exist or could not be found: "
                + sourceDirName);
        }

        // If the destination directory does not exist, create it.
        if (!Directory.Exists(destDirName))
        {
            Directory.CreateDirectory(destDirName);
        }


        // Get the file contents of the directory to copy.
        FileInfo[] files = dir.GetFiles();

        foreach (FileInfo file in files)
        {
            // Create the path to the new copy of the file.
            string temppath = Path.Combine(destDirName, file.Name);

            // Copy the file.
            file.CopyTo(temppath, false);
        }

        // If copySubDirs is true, copy the subdirectories.
        if (copySubDirs)
        {

            foreach (DirectoryInfo subdir in dirs)
            {
                // Create the subdirectory.
                string temppath = Path.Combine(destDirName, subdir.Name);

                // Copy the subdirectories.
                DirectoryCopy(subdir.FullName, temppath, copySubDirs);
            }
        }
    }
share|improve this answer

You loop through them and then simply run Move, the Directory class have functionality for listing contents too iirc.

share|improve this answer

You might be interested in trying Powershell and/or Robocopy to do this task. It'll be a lot more concise than creating a C# application for the task. Powershell is also a great tool for your development tool-belt.

I believe Powershell and Robocopy are both installed by default on Windows Vista and 7.

This might be a good place to start: http://technet.microsoft.com/en-us/library/ee332545.aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.