2004-12-25 01:03:18 +00:00
|
|
|
<?xml version='1.0' encoding='iso-8859-1'?>
|
2004-12-30 19:27:07 +00:00
|
|
|
<!-- $Revision: 1.4 $ -->
|
2004-12-25 01:03:18 +00:00
|
|
|
<!-- Generated by xml_proto.php v2.1. Found in /scripts directory of phpdoc. -->
|
|
|
|
<refentry id="function.ssh2-sftp-mkdir">
|
|
|
|
<refnamediv>
|
|
|
|
<refname>ssh2_sftp_mkdir</refname>
|
|
|
|
<refpurpose>
|
|
|
|
Create a directory
|
|
|
|
</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
<refsect1>
|
|
|
|
<title>Description</title>
|
|
|
|
<methodsynopsis>
|
|
|
|
<type>bool</type><methodname>ssh2_sftp_mkdir</methodname>
|
|
|
|
<methodparam><type>resource</type><parameter>sftp</parameter></methodparam>
|
2004-12-25 03:16:14 +00:00
|
|
|
<methodparam><type>string</type><parameter>dirname</parameter></methodparam>
|
2004-12-25 01:03:18 +00:00
|
|
|
<methodparam choice="opt"><type>int</type><parameter>mode</parameter></methodparam>
|
2004-12-29 16:06:48 +00:00
|
|
|
<methodparam choice="opt"><type>bool</type><parameter>recursive</parameter></methodparam>
|
2004-12-25 01:03:18 +00:00
|
|
|
</methodsynopsis>
|
|
|
|
|
2004-12-30 19:27:07 +00:00
|
|
|
<simpara>
|
|
|
|
Creates a directory on the remote file server with permissions set to
|
|
|
|
<parameter>mode</parameter>. If <parameter>recursive</parameter> is &true;
|
|
|
|
any parent directories required for <parameter>dirname</parameter> will
|
|
|
|
be automatically created as well.
|
|
|
|
This function is similar to using <function>mkdir</function> with the
|
|
|
|
<link linkend="wrappers.ssh2">ssh2.sftp://</link> wrapper.
|
|
|
|
</simpara>
|
|
|
|
|
|
|
|
<example>
|
|
|
|
<title>Creating a directory on a remote server</title>
|
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
|
|
|
<?php
|
|
|
|
$connection = ssh2_connet('shell.example.com', 22);
|
|
|
|
ssh2_auth_password($connection, 'username', 'password');
|
|
|
|
$sftp = ssh2_sftp($connection);
|
|
|
|
|
|
|
|
ssh2_sftp_mkdir($sftp, '/home/username/newdir');
|
|
|
|
/* Or: mkdir("ssh2.sftp://$sftp/home/username/newdir"); */
|
|
|
|
?>
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
|
|
|
|
<simpara>
|
|
|
|
See Also:
|
|
|
|
<function>mkdir</function>, and
|
|
|
|
<function>ssh2_sftp_rmdir</function>
|
|
|
|
</simpara>
|
2004-12-25 01:03:18 +00:00
|
|
|
|
|
|
|
</refsect1>
|
|
|
|
</refentry>
|
|
|
|
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
|
|
Local variables:
|
|
|
|
mode: sgml
|
|
|
|
sgml-omittag:t
|
|
|
|
sgml-shorttag:t
|
|
|
|
sgml-minimize-attributes:nil
|
|
|
|
sgml-always-quote-attributes:t
|
|
|
|
sgml-indent-step:1
|
|
|
|
sgml-indent-data:t
|
|
|
|
indent-tabs-mode:nil
|
|
|
|
sgml-parent-document:nil
|
|
|
|
sgml-default-dtd-file:"../../../../manual.ced"
|
|
|
|
sgml-exposed-tags:nil
|
|
|
|
sgml-local-catalogs:nil
|
|
|
|
sgml-local-ecat-files:nil
|
|
|
|
End:
|
|
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
|
|
vim: et tw=78 syn=sgml
|
|
|
|
vi: ts=1 sw=1
|
|
|
|
-->
|