- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 64 for Mkdir (0.29 sec)
-
docs/bucket/replication/setup_2site_existing_replication.sh
export MC_HOST_sitea=http://minio:minio123@127.0.0.1:9001 export MC_HOST_siteb=http://minio:minio123@127.0.0.1:9004 ./mc ready sitea ./mc ready siteb ./mc mb sitea/bucket ## Create 100 files mkdir -p /tmp/data for i in $(seq 1 10); do echo "T" >/tmp/data/file_${i}.txt done ./mc mirror /tmp/data sitea/bucket/ ./mc version enable sitea/bucket ./mc cp /tmp/data/file_1.txt sitea/bucket/marker
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Sep 06 09:42:21 UTC 2024 - 5.6K bytes - Viewed (0) -
cmd/sftp-server-driver.go
if bucket == "" { return errors.New("bucket name cannot be empty") } return clnt.RemoveObject(context.Background(), bucket, object, minio.RemoveObjectOptions{}) case "Mkdir": bucket, prefix := path2BucketObject(r.Filepath) if bucket == "" { return errors.New("bucket name cannot be empty") } if prefix == "" {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Feb 10 16:35:49 UTC 2025 - 11.6K bytes - Viewed (0) -
docs/en/docs/virtual-environments.md
<div class="termy"> ```console // Go to the home directory $ cd // Create a directory for all your code projects $ mkdir code // Enter into that code directory $ cd code // Create a directory for this project $ mkdir awesome-project // Enter into that project directory $ cd awesome-project ``` </div> ## Create a Virtual Environment { #create-a-virtual-environment }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 22.4K bytes - Viewed (0) -
android/guava/src/com/google/common/io/Files.java
* use {@code new File(context.getCacheDir(), "directoryname").mkdir()}, or, if you need an * arbitrary number of temporary directories, you might have to generate multiple directory * names in a loop until {@code mkdir()} returns {@code true}.) For JRE users, prefer {@link * java.nio.file.Files#createTempDirectory}, transforming it to a {@link File} using {@link
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 32.9K bytes - Viewed (0) -
docs/zh-hant/docs/virtual-environments.md
首先,為你的專案建立一個目錄。 我(指原作者 —— 譯者注)通常會在我的主目錄下建立一個名為 `code` 的目錄。 在這個目錄下,我再為每個專案建立一個目錄。 <div class="termy"> ```console // 進入主目錄 $ cd // 建立一個用於存放所有程式碼專案的目錄 $ mkdir code // 進入 code 目錄 $ cd code // 建立一個用於存放這個專案的目錄 $ mkdir awesome-project // 進入這個專案的目錄 $ cd awesome-project ``` </div> ## 建立一個虛擬環境 在開始一個 Python 專案的**第一時間**,**<abbr title="還有其他做法,此處僅作為一個簡單的指引">在你的專案內部</abbr>**建立一個虛擬環境。
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 09 22:39:33 UTC 2024 - 20.7K bytes - Viewed (0) -
guava/src/com/google/common/io/Files.java
* use {@code new File(context.getCacheDir(), "directoryname").mkdir()}, or, if you need an * arbitrary number of temporary directories, you might have to generate multiple directory * names in a loop until {@code mkdir()} returns {@code true}.) For JRE users, prefer {@link * java.nio.file.Files#createTempDirectory}, transforming it to a {@link File} using {@link
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 32.9K bytes - Viewed (0) -
docs/ko/docs/virtual-environments.md
보통 사용자 홈 디렉터리 안에 `code`라는 디렉터리를 만들고, 그 안에 프로젝트마다 하나씩 디렉터리를 만들어 관리합니다. <div class="termy"> ```console // 홈 디렉터리로 이동 $ cd // 모든 코드 프로젝트를 위한 디렉터리 생성 $ mkdir code // code 디렉터리로 이동 $ cd code // 이번 프로젝트를 위한 디렉터리 생성 $ mkdir awesome-project // 해당 프로젝트 디렉터리로 이동 $ cd awesome-project ``` </div> ## 가상 환경 생성
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri May 30 13:10:41 UTC 2025 - 25.8K bytes - Viewed (0) -
cmd/xl-storage.go
uuid := mustGetUUID() filePath := pathJoin(s.drivePath, minioMetaTmpDeletedBucket, ".writable-check-"+uuid+".tmp") // Create top level directories if they don't exist. // with mode 0o777 mkdir honors system umask. mkdirAll(pathutil.Dir(filePath), 0o777, s.drivePath) // don't need to fail here w, err := s.openFileDirect(filePath, os.O_CREATE|os.O_WRONLY|os.O_EXCL) if err != nil { return err }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Jun 13 11:33:47 UTC 2025 - 91.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbCopyUtil.java
final SmbTreeHandleImpl sh, final SmbTreeHandleImpl dh) throws CIFSException { final String path = dest.getLocator().getUNCPath(); if (path.length() > 1) { try { dest.mkdir(); if (dh.hasCapability(SmbConstants.CAP_NT_SMBS)) { dest.setPathInformation(src.getAttributes(), src.createTime(), src.lastModified(), src.lastAccess()); } else {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 16.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
SmbFile[] files; SmbFile ndest; final String path = dest.getUncPath0(); if (path.length() > 1) { try { dest.mkdir(); dest.setPathInformation(attributes, createTime, lastModified); } catch (final SmbException se) { if (se.getNtStatus() != NtStatus.NT_STATUS_ACCESS_DENIED
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 112.2K bytes - Viewed (0)