分类 笔记 下的文章

读取到的文件默认是根据修改时间排序的,如果要根据文件名排序可以使用

fileInfos.OrderBy(f => f.Name);

得到的顺序为:1、10、2、3 ... 9,使用以下方法即可解决

DirectoryInfo directoryInfo=new DirectoryInfo(folderPath);
FileInfo[] fileInfos= directoryInfo.GetFiles();

List<string> files=new List<string>();
Array.Sort(fileInfos, (x1, x2) => int.Parse(Regex.Match(x1.Name, @"\d+").Value).CompareTo(int.Parse(Regex.Match(x2.Name, @"\d+").Value)));
foreach (FileInfo file in fileInfos)
{
    files.Add(file.FullName);
}

原文链接:https://www.jianshu.com/p/d69461e7cbd7

密码过期可以使用命令行登录

mysqld -uroot -p***

此时如果执行其他命令会报错

ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

执行以下命令重置密码即可

alter user user() identified by "123456";

如果要设置密码永不过期可以执行

set global default_password_lifetime = 0;

# 32位
electron-packager . 'ProjectName' --platform=win32 --arch=ia32 --icon=logo.ico --out=./OutputPath --asar --app-version=1.0.0

# 64位
electron-packager . 'ProjectName' --platform=win32 --arch=x64 --icon=logo.ico --out=./OutputPath --asar --app-version=1.0.0

包含 a-z、A-Z、0-9,如果要追加符号,按序增加在数组$string_arr内,并修改mt_rand(1, 62)的第二个参数为增加后的数组的最大键值。

<?php
function rand_string($lenght){
    $string_arr = [
        1 => 'a', 2 => 'b', 3 => 'c', 4 => 'd', 5 => 'e', 6 => 'f', 7 => 'g',
        8 => 'h', 9 => 'i', 10 => 'j', 11 => 'k', 12 => 'l', 13 => 'm', 14 => 'n',
        15 => 'o', 16 => 'p', 17 => 'q', 18 => 'r', 19 => 's', 20 => 't', 21 => 'u',
        22 => 'v', 23 => 'w', 24 => 'x', 25 => 'y', 26 => 'z', 27 => 'A', 28 => 'B',
        29 => 'C', 30 => 'D', 31 => 'E', 32 => 'F', 33 => 'G', 34 => 'H', 35 => 'I',
        36 => 'J', 37 => 'K', 38 => 'L', 39 => 'M', 40 => 'N', 41 => 'O', 42 => 'P',
        43 => 'Q', 44 => 'R', 45 => 'S', 46 => 'T', 47 => 'U', 48 => 'V', 49 => 'W',
        50 => 'X', 51 => 'Y', 52 => 'Z', 53 => '1', 54 => '2', 55 => '3', 56 => '4',
        57 => '5', 58 => '6', 59 => '7', 60 => '8', 61 => '9', 62 => '0'
    ];
    $res = "";
    for($i = 0; $i < $lenght; $i++){
        $res .= $string_arr[mt_rand(1, 62)];
    }
    return $res;
}

//关闭本窗口,如果不是主窗口或有托管线程无法完全退出
this.Close();

//终止所有线程的消息,然后关闭所有窗口,如果有托管线程无法完全退出
Application.Exit();

//终止当前线程的消息,然后关闭所有窗口,如果有托管线程无法完全退出
Application.ExitThread();

//彻底退出,终止此进程并返回代码给操作系统
System.Environment.Exit(0);