码迷,mamicode.com
首页 >  
搜索关键字:fs    ( 2288个结果
Java MinIO 集成
完整的项目在 GitHub-mlb 配置类 package com.seliote.mlb.fs.config; import com.seliote.mlb.common.config.PropertiesInjector; import io.minio.BucketExistsArgs; im ...
分类:编程语言   时间:2021-06-02 17:42:43    阅读次数:0
nodeJs爬取网络图片
const cheerio = require("cheerio") const axios = require("axios") const fs = require("fs") if (!fs.existsSync("download")) { fs.mkdirSync("download", ...
分类:Web程序   时间:2021-06-02 17:04:51    阅读次数:0
unionfs 组合文件npm包参考使用
unionfs 是一个灵活强大的组合fs npm 包,可以方便的进行多fs 实现的组合,比如基于内存的fs 与本地fs 组合实现强大的 npm 扩展以及配置管理。。。 参考代码 package.json { "name": "mem-fs-app", "version": "1.0.0", "mai ...
分类:其他好文   时间:2021-05-25 17:54:06    阅读次数:0
将url下载到本地
const axios=require('axios') const fs = require('fs-extra'); const https=require('https') const path=require('path') function resolve (dir) { return p ...
分类:Web程序   时间:2021-05-24 17:11:19    阅读次数:0
egg.js文件下载实现
多文件合并下载 依赖于 https://github.com/feross/multistream const streams = []; for (const file of files) { streams.push(fs.createReadStream(file)); } this.ctx. ...
分类:Web程序   时间:2021-05-24 14:10:30    阅读次数:0
解决挂载mount: wrong fs type, bad option, bad superblock on
错误如下: mount: wrong fs type, bad option, bad superblock on 192.168.1.7:data/nfsdir2, missing codepage or helper program, or other error (for several fi ...
分类:其他好文   时间:2021-05-24 06:40:25    阅读次数:0
node.js createServer
const http=require('http') const fs=require('fs') const path=require('path') const server=http.createServer(function(req,res){ const {url}=req console ...
分类:Web程序   时间:2021-05-04 15:44:00    阅读次数:0
HDFS的hadoop和hdfs命令详解
原文链接:https://www.cnblogs.com/zsql/ 本篇主要对hadoop命令和hdfs命令进行阐述,yarn命令会在之后的文章中体现 hadoop fs命令可以用于其他文件系统,不止是hdfs文件系统内,也就是说该命令的使用范围更广可以用于HDFS、Local FS等不同的文件系 ...
分类:其他好文   时间:2021-04-26 13:47:48    阅读次数:0
逆向初级-硬编码(六)
6.1.前缀指令 1、硬编码的结构 2、前缀指令是分组的 <1> LOCK和REPEAT前缀指令: LOCK FO REPNE/REPNZ F2 REP/REPZ F3 <2> 段前缀指令: CS(2E) SS(36) DS(3E) ES(26) FS(64) GS(65) <3>操作数宽度前缀指令 ...
分类:其他好文   时间:2021-04-20 15:28:55    阅读次数:0
Docker镜像技术
镜像管理 镜像,即创建容器的模版,含有启动容器所需要的文件系统及所需要的内容,因此镜像主要用于方便和快速的创建并启动容器。 镜像含里面是一层层的文件系统,叫做 Union FS(联合文件系统),联合文件系统,可以将几层目录挂载到一起,形成一个虚拟文件系统,虚拟文件系统的目录结构就像普通 linux ...
分类:其他好文   时间:2021-04-19 15:14:51    阅读次数:0
2288条   上一页 1 2 3 4 ... 229 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!