Esempio n. 1
0
 /// <summary>
 /// Tao thu muc moi tai thu muc hien hanh tren FTP server
 /// Tham so:
 ///  strFolder: ten thu muc muon tao moi
 /// Tra ve:
 ///  true: thanh cong
 ///  false: that bai
 /// </summary>
 public bool CreateFolder(String strFolder)
 {
     if (CWinINet.FtpSetCurrentDirectory(m_HConnect, strFolder) == true)
     {
         CWinINet.FtpSetCurrentDirectory(m_HConnect, "..");
         return(false);
     }
     return(CWinINet.FtpCreateDirectory(m_HConnect, strFolder));
 }
Esempio n. 2
0
    /// <summary>
    ///**************************************************/
    /// Them tat ca tap tin va thu muc tai thu muc strFolder tren FTP server
    /// vao ListView lsV
    ///**************************************************/
    /// </summary>
    public void FillRemoteListView(ListView lsV, String strFolder)
    {
        //set the new remote working directory
        if (!CWinINet.FtpSetCurrentDirectory(m_HConnect, strFolder))
        {
            Console.WriteLine("loi, FtpSetCurrentDirectory");
            //ProcessInternetError();
        }

        //re-fill the remote list with new directory
        FillRemoteListView(lsV);
    }
Esempio n. 3
0
    /// <summary>
    /// Upload tat ca cac tap tin va thu muc con ben trong thu muc strFolder,
    /// va ca thu muc strFolder cua may tram len FTP server
    /// Tham so:
    ///  strFolder: ten thu muc muon upload
    /// Tra ve:
    ///  true: thanh cong
    ///  false: that bai
    /// </summary>
    public bool UploadFolder(String strFolder)
    {
        if (CWinINet.FtpSetCurrentDirectory(m_HConnect, strFolder) == true)
        {
            CWinINet.FtpSetCurrentDirectory(m_HConnect, "..");
            return(false);
        }

        try
        {
            CWinINet.FtpCreateDirectory(m_HConnect, strFolder);
        }
        catch (FileNotFoundException e)
        {
            return(false);
        }

//        frm = new Form3();
//        frm.Show();
        bool flag = _UploadFolder(strFolder);

//        frm.Close();
        return(flag);
    }
Esempio n. 4
0
    /// <summary>
    /// Upload tat ca cac tap tin va thu muc con ben trong thu muc strFolder
    /// cua may tram len FTP server
    /// Tham so:
    ///  strFolder: ten thu muc muon Upload
    /// </summary>
    private bool _UploadFolder(String strFolder)
    {
        StringBuilder   szPath       = new StringBuilder(256);
        String          arrFolder    = null;
        uint            uiLen        = 256;
        WIN32_FIND_DATA FindFileData = new WIN32_FIND_DATA();
        IntPtr          hFindFile;

        if (CWinINet.FtpSetCurrentDirectory(m_HConnect, strFolder) == false)
        {
            return(false);
        }
        else
        {
            uiLen = 256;
            CWinINet.FtpGetCurrentDirectory(m_HConnect, szPath, ref uiLen);
        }

        try
        {
            Directory.SetCurrentDirectory(strFolder);
        }
        catch (Exception e)
        {
            return(false);
        }

        string str = Directory.GetCurrentDirectory();

        if (str.LastIndexOf('\\') == str.Length - 1) // O dia
        {
            str += "*";
        }
        else // Thu muc
        {
            str += "\\*";
        }

        hFindFile = CAPIFunctions.FindFirstFile(str, FindFileData);
        if (hFindFile.ToPointer() != null)
        {
            // Upload tat ca cac tap tin len FTP server
            if (!((FindFileData.dwFileAttributes & FileAttribute.FILE_ATTRIBUTE_DIRECTORY) == FileAttribute.FILE_ATTRIBUTE_DIRECTORY))
            {
                if (!CWinINet.FtpPutFile(m_HConnect, FindFileData.cFileName, FindFileData.cFileName,
                                         CWinINet.FTP_TRANSFER_TYPE_BINARY, 0))
                {
                    return(false);
                }
                else
                {
                    frm.lbl.Text = szPath + "\\" + FindFileData.cFileName;
                }
            }
            else // Thu muc
            {
                if (FindFileData.cFileName != ".")
                {
                    arrFolder += "|" + FindFileData.cFileName;
                }
            }

            while (CAPIFunctions.FindNextFile(hFindFile, FindFileData))
            {
                if (!((FindFileData.dwFileAttributes & FileAttribute.FILE_ATTRIBUTE_DIRECTORY) == FileAttribute.FILE_ATTRIBUTE_DIRECTORY))
                {
                    if (!CWinINet.FtpPutFile(m_HConnect, FindFileData.cFileName, FindFileData.cFileName,
                                             CWinINet.FTP_TRANSFER_TYPE_BINARY, 0))
                    {
                        return(false);
                    }
                    else
                    {
                        frm.lbl.Text = szPath + "\\" + FindFileData.cFileName;
                    }
                }
                else // Thu muc
                if (FindFileData.cFileName != "..")
                {
                    arrFolder += "|" + FindFileData.cFileName;
                }
            }
            CWinINet.InternetCloseHandle(hFindFile);
            // Upload tat ca cac thu muc ve FTP Server
            if (arrFolder != null)
            {
                string[] arr = arrFolder.Split('|');
                for (int i = 1; i < arr.Length; ++i)
                {
                    try
                    {
                        CWinINet.FtpCreateDirectory(m_HConnect, arr[i]);
                    }
                    catch (FileNotFoundException e)
                    {
                        return(false);
                    }

                    return(_UploadFolder(arr[i]));
                }
            }
            // Tra ve thu muc hien hanh
            uiLen = 256;
            if (CWinINet.FtpGetCurrentDirectory(m_HConnect, szPath, ref uiLen) == false)
            {
                return(false);
            }
            if (CWinINet.FtpSetCurrentDirectory(m_HConnect, szPath.ToString() + "//..") == false)
            {
                return(false);
            }

            try
            {
                Directory.SetCurrentDirectory(Directory.GetCurrentDirectory() + "\\..");
            }
            catch (Exception e)
            {
                return(false);
            }
        }
        return(true);
    }
Esempio n. 5
0
    /// <summary>
    /// Download tat ca cac tap tin va thu muc con ben trong thu muc strFolder
    /// tren FTP server
    /// Tham so:
    ///  strFolder: ten thu muc muon download
    /// </summary>
    private bool _DownloadFolder(String strFolder)
    {
        StringBuilder   szPath       = new StringBuilder(256);
        String          arrFolder    = null;
        uint            uiLen        = 256;
        WIN32_FIND_DATA FindFileData = new WIN32_FIND_DATA();
        IntPtr          hFindFile;

        if (CWinINet.FtpSetCurrentDirectory(m_HConnect, strFolder) == false)
        {
            return(false);
        }

        try
        {
            Directory.SetCurrentDirectory(strFolder);
        }
        catch (Exception e)
        {
            return(false);
        }

        hFindFile = CWinINet.FtpFindFirstFile(m_HConnect, null, FindFileData,
                                              CWinINet.INTERNET_FLAG_RELOAD, 0);
        if (hFindFile.ToPointer() != null)
        {
            // Download tat ca cac tap tin ve may tram
            if (!((FindFileData.dwFileAttributes & FileAttribute.FILE_ATTRIBUTE_DIRECTORY) == FileAttribute.FILE_ATTRIBUTE_DIRECTORY))
            {
                if (!CWinINet.FtpGetFile(m_HConnect, FindFileData.cFileName, FindFileData.cFileName,
                                         true, FileAttribute.FILE_ATTRIBUTE_NORMAL, CWinINet.FTP_TRANSFER_TYPE_BINARY, 0))
                {
                    return(false);
                }
            }
            else // Thu muc
            {
                if (FindFileData.cFileName != ".")
                {
                    arrFolder += "|" + FindFileData.cFileName;
                }
            }

            while (CWinINet.InternetFindNextFile(hFindFile, FindFileData))
            {
                if (!((FindFileData.dwFileAttributes & FileAttribute.FILE_ATTRIBUTE_DIRECTORY) == FileAttribute.FILE_ATTRIBUTE_DIRECTORY))
                {
                    if (!CWinINet.FtpGetFile(m_HConnect, FindFileData.cFileName, FindFileData.cFileName,
                                             true, FileAttribute.FILE_ATTRIBUTE_NORMAL, CWinINet.FTP_TRANSFER_TYPE_BINARY, 0))
                    {
                        return(false);
                    }
                }
                else // Thu muc
                if (FindFileData.cFileName != "..")
                {
                    arrFolder += "|" + FindFileData.cFileName;
                }
            }
            if (CWinINet.InternetCloseHandle(hFindFile) == false)
            {
                return(false);
            }
            // Download tat ca cac thu muc ve may tram
            if (arrFolder != null)
            {
                string[] arr = arrFolder.Split('|');
                for (int i = 1; i < arr.Length; ++i)
                {
                    try
                    {
                        Directory.CreateDirectory(arr[i]);
                    }
                    catch (Exception e)
                    {
                        return(false);
                    }

                    return(_DownloadFolder(arr[i]));
                }
            }
            // Tra ve thu muc hien hanh
            uiLen = 256;
            if (CWinINet.FtpGetCurrentDirectory(m_HConnect, szPath, ref uiLen) == false)
            {
                return(false);
            }

            if (CWinINet.FtpSetCurrentDirectory(m_HConnect, szPath.ToString() + "//..") == false)
            {
                return(false);
            }

            try
            {
                Directory.SetCurrentDirectory(Directory.GetCurrentDirectory() + "\\..");
            }
            catch (Exception e)
            {
                return(false);
            }
        }
        return(true);
    }
Esempio n. 6
0
    /// <summary>
    /// Xoa tat ca cac tap tin va thu muc con ben trong thu muc strFolder
    /// tren FTP server
    /// Tham so:
    ///  strFolder: ten thu muc muon xoa
    /// </summary>
    private bool _DeleteFolder(String strFolder)
    {
        StringBuilder   szPath       = new StringBuilder(256);
        uint            uiLen        = 256;
        WIN32_FIND_DATA FindFileData = new WIN32_FIND_DATA();
        IntPtr          hFindFile;

        if (CWinINet.FtpSetCurrentDirectory(m_HConnect, strFolder) == false)
        {
            return(false);
        }

        hFindFile = CWinINet.FtpFindFirstFile(m_HConnect, null, FindFileData,
                                              CWinINet.INTERNET_FLAG_RELOAD, 0);

        if (hFindFile.ToPointer() != null)
        {
            // Xoa tat ca cac tap tin
            if (!((FindFileData.dwFileAttributes & FileAttribute.FILE_ATTRIBUTE_DIRECTORY) == FileAttribute.FILE_ATTRIBUTE_DIRECTORY))
            {
                if (CWinINet.FtpDeleteFile(m_HConnect, FindFileData.cFileName) == false)
                {
                    return(false);
                }
            }

            while (CWinINet.InternetFindNextFile(hFindFile, FindFileData))
            {
                if (!((FindFileData.dwFileAttributes & FileAttribute.FILE_ATTRIBUTE_DIRECTORY) == FileAttribute.FILE_ATTRIBUTE_DIRECTORY))
                {
                    if (!CWinINet.FtpDeleteFile(m_HConnect, FindFileData.cFileName))
                    {
                        return(false);
                    }
                }
            }

            CWinINet.InternetCloseHandle(hFindFile);
            // Xoa tat ca cac thu muc
            do
            {
                hFindFile = CWinINet.FtpFindFirstFile(m_HConnect, null, FindFileData,
                                                      CWinINet.INTERNET_FLAG_RELOAD, 0);

                if (hFindFile.ToPointer() != null)
                {
                    CWinINet.InternetFindNextFile(hFindFile, FindFileData); // Bo qua thu muc ".."
                    if (CWinINet.InternetFindNextFile(hFindFile, FindFileData))
                    {
                        CWinINet.InternetCloseHandle(hFindFile);
                        return(_DeleteFolder(FindFileData.cFileName));

                        if (!CWinINet.FtpRemoveDirectory(m_HConnect, FindFileData.cFileName))
                        {
                            return(false);
                        }
                    }
                    else
                    {
                        CWinINet.InternetCloseHandle(hFindFile);
                        break;
                    }
                }
                else
                {
                    break;
                }
            }while (true);
            // Tra ve thu muc hien hanh
            uiLen = 256;
            if (CWinINet.FtpGetCurrentDirectory(m_HConnect, szPath, ref uiLen) == false)
            {
                return(false);
            }
            if (CWinINet.FtpSetCurrentDirectory(m_HConnect, szPath.ToString() + "//..") == false)
            {
                return(false);
            }
        }
        return(true);
    }