复制文件 func CopyFile(dstFileName string,srcFileName string )(written int64,err error) { srcFile,srcErr := os.Open(srcFileName) if srcErr != nil{ fmt.Pri ...
分类:
其他好文 时间:
2021-01-30 12:10:15
阅读次数:
0
一、先将压缩文件解压至指定目录 import zipfile import os zip_src = "目标指定压缩文件" def unzip_file(): r = zipfile.ZipFile(zip_src) if r: fz = zipfile.ZipFile(zip_src, 'r') ...
分类:
编程语言 时间:
2021-01-29 12:23:34
阅读次数:
0
logging是一个python的自带模块,用来记录日志信息,大白话就是把你print()的东西输出到控制台console或者文件file 这是一个非常重要的模块,在我们眼中仅次于os和sys,下面将我自己封装的logging代码贴出来 import logging def logger_handl ...
分类:
编程语言 时间:
2021-01-29 12:09:22
阅读次数:
0
案例 import os from hashlib import md5 from selenium import webdriver import requests from lxml import etree # 首页请求 def get_response(url): headers = {"u ...
分类:
Web程序 时间:
2021-01-28 11:56:06
阅读次数:
0
import os def remove_filename(path_dir, start, end): files = [f for f in os.listdir(path_dir) if f.startswith(start) and f.endswith(end)] for file_nam ...
分类:
编程语言 时间:
2021-01-26 11:48:41
阅读次数:
0
? CVE-2021-2109 Weblogic远程代码执行 ? 一、漏洞简介 Oracle官方发布了漏洞补丁,修了包括 CVE-2021-2109 Weblogic Server远程代码执行漏洞在内的多个高危严重漏洞。CVE-2021-2109 中,攻击者可构造恶意请求,造成JNDI注入,执行任意 ...
分类:
Web程序 时间:
2021-01-22 11:48:03
阅读次数:
0
实现OS 这个标题给的太大了,只能说实现了几个小的功能而已。 如标题所说,纯裸机,也就是没有任何的字符库,BIOS中断也没有使用,利用时钟中断、键盘中断、BEEP、在200 * 320 像素显示模式下实现了 自己的系统(DOGE) 先来看看效果吧 虽然直接看演示比较直接,但是还是啰嗦一下。 包括4个 ...
分类:
编程语言 时间:
2021-01-21 10:56:24
阅读次数:
0
在OS中,一些程序的大小超过内存的大小(比如好几十G的游戏要在16G的内存上跑),便产生了虚拟内存的概念 我们通过给每个进程适当的物理块(内存),只让经常被调用的页面常驻在物理块上,不常用的页面就放在外存,等到要用的时候再从外存调入,从而实现虚拟内存 但是因为给的每个进程的物理块大小不可能是无限的, ...
分类:
编程语言 时间:
2021-01-20 12:00:00
阅读次数:
0
原文标题:Async/Await 原文链接:https://os.phil-opp.com/async-await/#multitasking 公众号: Rust 碎碎念 翻译 by: Praying 在本文中我们将讨论协作式多任务(cooperative multitasking)和 Rust 中 ...
分类:
其他好文 时间:
2021-01-18 10:53:06
阅读次数:
0
错误一:安装nginx报错“src/os/unix/ngx_user.c:26:7: error: ‘struct crypt_data’ has no member named ‘current_salt’” “src/os/unix/ngx_user.c:26:7: error: ‘struct ...
分类:
其他好文 时间:
2021-01-18 10:49:25
阅读次数:
0