GetTempUniqueFileName() public static method

public static GetTempUniqueFileName ( string filePath, string newExtension = "" ) : string
filePath string
newExtension string
return string
Esempio n. 1
0
        public DataTable LoadDataTableFromCSV2(string csvPath, char?separator = null)
        {
            if (MyLoadDataTableFromCSV != null)
            {
                return(MyLoadDataTableFromCSV(csvPath, separator));
            }

            DataTable       result    = null;
            bool            isHeader  = true;
            TextFieldParser csvParser = null;

            try
            {
                csvParser = new TextFieldParser(csvPath, DefaultEncoding);
            }
            catch
            {
                //Try by copying the file...
                string newPath = FileHelper.GetTempUniqueFileName(csvPath);
                File.Copy(csvPath, newPath);
                csvParser = new TextFieldParser(newPath, DefaultEncoding);
                FileHelper.PurgeTempApplicationDirectory();
            }
            if (separator == null)
            {
                separator = ',';
            }
            //csvParser.CommentTokens = new string[] { "#" };
            csvParser.SetDelimiters(new string[] { separator.ToString() });
            csvParser.HasFieldsEnclosedInQuotes = true;

            while (!csvParser.EndOfData)
            {
                string[] fields = csvParser.ReadFields();
                if (isHeader)
                {
                    result = new DataTable();
                    for (int i = 0; i < fields.Length; i++)
                    {
                        result.Columns.Add(new DataColumn(fields[i], typeof(string)));
                    }
                    isHeader = false;
                }
                else
                {
                    var row = result.Rows.Add();
                    for (int i = 0; i < fields.Length && i < result.Columns.Count; i++)
                    {
                        row[i] = fields[i];
                        if (row[i].ToString().Contains("\0"))
                        {
                            row[i] = "";
                        }
                    }
                }
            }
            csvParser.Close();

            return(result);
        }
Esempio n. 2
0
        public DataTable LoadDataTableFromExcel(string excelPath, string tabName = "")
        {
            if (MyLoadDataTableFromExcel != null)
            {
                return(MyLoadDataTableFromExcel(excelPath, tabName));
            }

            //Copy the Excel file if it is open...
            FileHelper.PurgeTempApplicationDirectory();
            string newPath = FileHelper.GetTempUniqueFileName(excelPath);

            File.Copy(excelPath, newPath, true);
            File.SetLastWriteTime(newPath, DateTime.Now);

            string connectionString = string.Format(ExcelOdbcDriver, newPath);
            string sql = string.Format("select * from [{0}$]", Helper.IfNullOrEmpty(tabName, "Sheet1"));

            return(OdbcLoadDataTable(connectionString, sql));
        }
Esempio n. 3
0
        /// <summary>
        /// Load all Excel files located in a directory into tables, using the tab name as table name.
        /// </summary>
        public bool LoadTablesFromExcel(string loadFolder, string sourceExcelDirectory, string searchPattern = "*.xlsx", bool useAllConnections = false)
        {
            bool result = false;

            try
            {
                foreach (var f in Directory.GetFiles(sourceExcelDirectory, searchPattern))
                {
                    if (CheckForNewFileSource(loadFolder, f))
                    {
                        ExcelPackage package;
                        try
                        {
                            package = new ExcelPackage(new FileInfo(f));
                        }
                        catch
                        {
                            string newPath = FileHelper.GetTempUniqueFileName(f);
                            FileHelper.PurgeTempApplicationDirectory();
                            File.Copy(f, newPath, true);
                            package = new ExcelPackage(new FileInfo(newPath));
                        }
                        var workbook = package.Workbook;
                        var tabs     = (from ws in workbook.Worksheets select ws.Name);
                        foreach (var tab in tabs)
                        {
                            LoadTableFromExcel(f, tab, tab, useAllConnections);
                        }
                        result = true;
                        File.Copy(f, Path.Combine(loadFolder, Path.GetFileName(f)), true);
                    }
                    else
                    {
                        LogMessage("No import done");
                    }
                }
            }
            finally
            {
                LogDebug();
            }
            return(result);
        }
Esempio n. 4
0
        public DataTable LoadDataTableFromCSV(string csvPath, char?separator = null)
        {
            if (MyLoadDataTableFromCSV != null)
            {
                return(MyLoadDataTableFromCSV(csvPath, separator));
            }

            DataTable     result    = null;
            bool          isHeader  = true;
            Regex         regexp    = null;
            List <string> languages = new List <string>();

            string[] lines = null;
            try
            {
                lines = File.ReadAllLines(csvPath, DefaultEncoding);
            }
            catch
            {
                //Try by copying the file...
                string newPath = FileHelper.GetTempUniqueFileName(csvPath);
                File.Copy(csvPath, newPath);
                lines = File.ReadAllLines(newPath, DefaultEncoding);
                FileHelper.PurgeTempApplicationDirectory();
            }


            foreach (string line in lines)
            {
                if (string.IsNullOrWhiteSpace(line))
                {
                    continue;
                }

                if (regexp == null)
                {
                    string exp = "(?<=^|,)(\"(?:[^\"]|\"\")*\"|[^,]*)";
                    if (separator == null)
                    {
                        //use the first line to determine the separator between , and ;
                        separator = ',';
                        if (line.Split(';').Length > line.Split(',').Length)
                        {
                            separator = ';';
                        }
                    }
                    if (separator != ',')
                    {
                        exp = exp.Replace(',', separator.Value);
                    }
                    regexp = new Regex(exp);
                }

                MatchCollection collection = regexp.Matches(line);
                if (isHeader)
                {
                    result = new DataTable();
                    for (int i = 0; i < collection.Count; i++)
                    {
                        result.Columns.Add(new DataColumn(ExcelHelper.FromCsv(collection[i].Value), typeof(string)));
                    }
                    isHeader = false;
                }
                else
                {
                    var row = result.Rows.Add();
                    for (int i = 0; i < collection.Count && i < result.Columns.Count; i++)
                    {
                        row[i] = ExcelHelper.FromCsv(collection[i].Value);
                    }
                }
            }

            return(result);
        }
        /// <summary>
        /// Load a DataTable from an Excel file. A start and end row, and/or colum can be specified. If hasHeader is false, column names are automatic.
        /// </summary>
        static public DataTable LoadDataTableFromExcel(string excelPath, string tabName = "", int startRow = 1, int startCol = 1, int endRow = 0, int endCol = 0, bool hasHeader = true)
        {
            ExcelPackage package;

            try
            {
                package = new ExcelPackage(new FileInfo(excelPath));
            }
            catch
            {
                string newPath = FileHelper.GetTempUniqueFileName(excelPath);
                FileHelper.PurgeTempApplicationDirectory();
                File.Copy(excelPath, newPath, true);
                package = new ExcelPackage(new FileInfo(newPath));
            }
            var            workbook  = package.Workbook;
            ExcelWorksheet worksheet = null;

            if (workbook.Worksheets.Count == 0)
            {
                throw new Exception("No sheet in the workbook.");
            }
            if (!string.IsNullOrEmpty(tabName))
            {
                foreach (ExcelWorksheet ws in workbook.Worksheets)
                {
                    if (ws.Name.ToLower() == tabName.ToLower())
                    {
                        worksheet = ws;
                        break;
                    }
                }
                if (worksheet == null)
                {
                    throw new Exception("Unable to find tab name specified.");
                }
            }
            else
            {
                worksheet = workbook.Worksheets.First();
            }

            DataTable result = new DataTable();
            int       colTitle = startCol;
            int       colCount = 0, index = startCol;

            while ((endCol == 0 && worksheet.Cells[startRow, index + 1].Value != null) || colCount < endCol)
            {
                colCount++;
                index++;
            }

            while ((endCol == 0 && (worksheet.Cells[startRow, colTitle].Value != null)) || colTitle <= endCol)
            {
                int    rowTitle = startRow;
                string colName  = worksheet.Cells[startRow, colTitle].Address;
                if (hasHeader)
                {
                    colName = worksheet.Cells[startRow, colTitle].Text;
                    if (string.IsNullOrEmpty(colName))
                    {
                        colName = worksheet.Cells[startRow, colTitle].Value.ToString();
                    }
                    rowTitle++;
                }
                else
                {
                    colName = colName.Replace("'", "").Replace("!", "").Replace(worksheet.Name, "");
                }
                //get the type
                Type t = typeof(string);
                if (worksheet.Cells[rowTitle, colTitle] != null && worksheet.Cells[rowTitle, colTitle].Value != null)
                {
                    t = worksheet.Cells[rowTitle, colTitle].Value.GetType();
                    //check that the type is consistent
                    if (t != typeof(string))
                    {
                        rowTitle++;
                        while (!IsRowEmpty(worksheet, rowTitle, startCol, colCount))
                        {
                            if (worksheet.Cells[rowTitle, colTitle].Value != null && t != worksheet.Cells[rowTitle, colTitle].Value.GetType())
                            {
                                t = typeof(string);
                                break;
                            }
                            rowTitle++;
                        }
                    }
                }
                result.Columns.Add(colName, t);
                colTitle++;
            }

            //copy values
            int rowValue = startRow;

            if (hasHeader)
            {
                rowValue++;
            }
            while ((endRow == 0 && !IsRowEmpty(worksheet, rowValue, startCol, result.Columns.Count)) || rowValue < endRow)
            {
                DataRow dr = result.Rows.Add();
                for (int colValue = startCol; colValue < startCol + result.Columns.Count; colValue++)
                {
                    object val = null;
                    if (worksheet.Cells[rowValue, colValue].Value != null)
                    {
                        string valText = worksheet.Cells[rowValue, colValue].Text;
                        if (!string.IsNullOrEmpty(worksheet.Cells[rowValue, colValue].Text))
                        {
                            valText = worksheet.Cells[rowValue, colValue].Value.ToString();
                        }

                        if (string.IsNullOrEmpty(valText))
                        {
                            val = worksheet.Cells[rowValue, colValue].Value;
                        }
                        else
                        {
                            val = valText;
                        }
                    }
                    if (val == null)
                    {
                        val = DBNull.Value;
                    }
                    dr[colValue - startCol] = val;
                }
                rowValue++;
            }

            return(result);
        }
        static public DataTable LoadDataTableFromCSV(string csvPath, char?separator, Encoding encoding)
        {
            DataTable result   = null;
            bool      isHeader = true;
            Regex     regexp   = null;

            string[] lines = null;
            try
            {
                lines = File.ReadAllLines(csvPath, encoding);
            }
            catch
            {
                //Try by copying the file...
                string newPath = FileHelper.GetTempUniqueFileName(csvPath);
                File.Copy(csvPath, newPath);
                lines = File.ReadAllLines(newPath, encoding);
                FileHelper.PurgeTempApplicationDirectory();
            }


            foreach (string line in lines)
            {
                var line2 = line.Trim();
                if (string.IsNullOrWhiteSpace(line2))
                {
                    continue;
                }

                if (regexp == null)
                {
                    if (separator == null)
                    {
                        //use the first line to determine the separator between , and ;
                        separator = ',';
                        if (line2.Split(';').Length > line2.Split(',').Length)
                        {
                            separator = ';';
                        }
                    }
                    var    sep2 = (separator.Value == '|' || separator.Value == ':' ? Path.DirectorySeparatorChar.ToString() : "") + separator.Value;
                    string exp  = "(?<=^|" + sep2 + ")(\"(?:[^\"]|\"\")*\"|[^" + sep2 + "]*)";
                    regexp = new Regex(exp);
                }

                MatchCollection collection = regexp.Matches(line2);
                if (isHeader)
                {
                    result = new DataTable();
                    for (int i = 0; i < collection.Count; i++)
                    {
                        result.Columns.Add(new DataColumn(ExcelHelper.FromCsv(collection[i].Value), typeof(string)));
                    }
                    isHeader = false;
                }
                else
                {
                    var row = result.Rows.Add();
                    for (int i = 0; i < collection.Count && i < result.Columns.Count; i++)
                    {
                        row[i] = ExcelHelper.FromCsv(collection[i].Value);
                        if (row[i].ToString().Contains("\0"))
                        {
                            row[i] = "";
                        }
                    }
                }
            }

            return(result);
        }