如何使用PHP代码创建文件夹?

时间:2013-08-13 18:53:16

标签: php file directory

我们可以使用PHP代码创建文件夹吗?我希望每当新用户创建他的新帐户时,他的文件夹会自动创建并创建一个PHP文件。这可能吗?

5 个答案:

答案 0 :(得分:28)

纯粹的基本文件夹创建

<?php mkdir("testing"); ?>&lt; =这个,实际上创建了一个名为“testing”的文件夹。



创建基本文件

<?php
$file = fopen("test.txt","w");
echo fwrite($file,"Hello World. Testing!");
fclose($file);
?>

使用aa+开关添加/附加到文件。



编辑:

此版本将同时创建一个文件和文件夹,然后在屏幕上显示。

<?php

// change the name below for the folder you want
$dir = "new_folder_name";

$file_to_write = 'test.txt';
$content_to_write = "The content";

if( is_dir($dir) === false )
{
    mkdir($dir);
}

$file = fopen($dir . '/' . $file_to_write,"w");

// a different way to write content into
// fwrite($file,"Hello World.");

fwrite($file, $content_to_write);

// closes the file
fclose($file);

// this will show the created file from the created folder on screen
include $dir . '/' . $file_to_write;

?>

答案 1 :(得分:7)

您可以使用mkdir()函数使用PHP创建目录。

mkdir("/path/to/my/dir", 0700);

您可以使用fopen()使用模式w在该目录中创建文件。

fopen('myfile.txt', 'w');

  

w :仅限写作;将文件指针放在文件的开头,并将文件截断为零长度。如果该文件不存在,请尝试创建它。

答案 2 :(得分:2)

您可以轻松创建:

$structure = './depth1/depth2/depth3/';
if (!mkdir($structure, 0, true)) {
die('Failed to create folders...');
}

答案 3 :(得分:1)

...然后您可以使用copy()复制PHP文件,尽管这听起来非常低效。

答案 4 :(得分:1)

在回答如何在PHP中写入文件的问题时,您可以使用以下示例:

    $fp = fopen ($filename, "a"); # a = append to the file. w = write to the file (create new if doesn't exist)
    if ($fp) {
        fwrite ($fp, $text); //$text is what you are writing to the file
        fclose ($fp);
        $writeSuccess = "Yes";
        #echo ("File written");
    }
    else {
    $writeSuccess = "No";
    #echo ("File was not written");
    }