码迷,mamicode.com
首页 >  
搜索关键字:file system check    ( 106627个结果
linux 删除文件夹下文件
1:删除当前目录下 后缀为 ”.***“的文件 find -name "*.txt" -exec rm -f '{}' \; 删除后缀为.txt的文件 2:清空某个文件的内容 echo "" > filename ...
分类:系统相关   时间:2021-05-24 02:31:05    阅读次数:0
SM3
算法过程 代码实现 /************************************************************************ File name: SM3.c Version: SM3_V1.1 Date: Sep 18,2016 Description: ...
分类:其他好文   时间:2021-05-24 02:25:02    阅读次数:0
DBHelperMySQL
using System;using System.Collections;using System.Collections.Specialized;using System.Data;using System.Configuration;using System.Data.Common;using ...
分类:数据库   时间:2021-05-24 02:07:55    阅读次数:0
spring启动后初始化某个方法
有时候我们想要在spring启动后就做一些初始化配置,或者启动一个常住线程,这个时候需要定义一个类,且实现ApplicationRunner接口 @Component public class ZKMasterClient implements ApplicationRunner{ private ...
分类:编程语言   时间:2021-05-24 02:02:16    阅读次数:0
vue导出excel
1. 全部导出 <div class="toexcel"> <el-button @click="exportExcel" type="primary" class="button" style="width:70px;position:absolute;top:0;right:30px" >导出< ...
分类:其他好文   时间:2021-05-24 01:58:02    阅读次数:0
[nsis]安装包反编译
反编译出文件和.nsi脚本 【工具】 7z 15.05版 【下载地址】 https://sourceforge.net/projects/sevenzip/files/7-Zip/15.05/ https://jaist.dl.sourceforge.net/project/sevenzip/7-Z ...
分类:其他好文   时间:2021-05-24 01:52:45    阅读次数:0
C# 递归压缩图片
整理压缩代码 using System; using System.Collections.Generic; using System.Drawing; using System.Drawing.Drawing2D; using System.Drawing.Imaging; using Syste ...
分类:Windows程序   时间:2021-05-24 01:47:14    阅读次数:0
WCF错误:413 Request Entity Too Large 的一个解决方法
一个简单的解决方案是:不管是服务端还是客户端,在web.config下 的system.serviceModel标签下方增加一个没有设置名字的Binding默认配置就行了。 具体配置如下: <system.serviceModel> <bindings> <basicHttpBinding> <bi ...
分类:其他好文   时间:2021-05-24 01:40:24    阅读次数:0
【已解决】无法打开.xlsx文件,xlrd.biffh.XLRDError: Excel xlsx file; not supported
原因是最近xlrd更新到了2.0.1版本,只支持.xls文件。所以x1 = xlrd.open_workbook("data.xlsx")会报错。 可以安装旧版xlrd,在cmd中运行: 建议直接卸载新版本,下载xlrd旧版本 pip uninstall xlrd pip install xlrd= ...
分类:其他好文   时间:2021-05-24 01:37:35    阅读次数:0
ubuntu20.04 远程桌面连接失败的来龙去脉
问题描述 在此之前,我已经解决过 Ubuntu20.04.2无法启动xrdp click here,并且已经能够成功远程桌面连接了。 但是,经过某些操作,突然又不行了。 问题分析 虚拟机Ubuntu系统,需要 xrdp 和 xrdp-sesman 服务都是启动的情况下,才能正常进行远程桌面连接。 我 ...
分类:系统相关   时间:2021-05-24 01:35:11    阅读次数:0
106627条   上一页 1 ... 51 52 53 54 55 ... 10663 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!