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);
}
(PECL ssh2 >= 0.9.0)
ssh2_sftp_mkdir — ディレクトリを作成する
sftp
ssh2_sftp() でオープンした SSH2 SFTP リソース。
dirname
新しいディレクトリへのパス。
mode
新しいディレクトリのパーミッション。 実際のパーミッションの値は、現在の umask の影響を受けます。
recursive
もし recursive
が true
の場合、
dirname
に必要とされる全ての親ディレクトリは自動的に作成されます。
成功した場合に true
を、失敗した場合に false
を返します。
例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"); */
?>
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);
}