ssh2_sftp_mkdir
(PECL ssh2 >= 0.9.0)
ssh2_sftp_mkdir — ディレクトリを作成する
パラメータ
sftp
-
ssh2_sftp() でオープンした SSH2 SFTP リソース。
dirname
-
新しいディレクトリへのパス。
mode
-
新しいディレクトリのパーミッション。 実際のパーミッションの値は、現在の umask の影響を受けます。
recursive
-
もし
recursive
がtrue
の場合、dirname
に必要とされる全ての親ディレクトリは自動的に作成されます。
例
例1 リモートサーバー上へのディレクトリの作成
<?php
$connection = ssh2_connect('shell.example.com', 22);
ssh2_auth_password($connection, 'username', 'password');
$sftp = ssh2_sftp($connection);
ssh2_sftp_mkdir($sftp, '/home/username/newdir');
/* もしくは次の通り: mkdir("ssh2.sftp://$sftp/home/username/newdir"); */
?>
+add a note
User Contributed Notes 1 note
murtuzazabuawala at gmail dot com ¶
2 years ago
we can first check for directory exists and create a new directory
if (is_dir("ssh2.sftp://intval($sftp)/some_directory/archive/")) {
mkdir("ssh2.sftp://intval($sftp)/some_directory/archive/",0777, true);
}
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google