Jump to content
  • 0

filesize() работает только в текущем каталоге...


andrums
 Share

Question

<form action="test.php">
Введите путь к папке: <input name="catalog">
</form>

<?php
function ReadDirectory($dir)
{
if ($d=opendir($dir))
{
while ($file=readdir($d))
{
if (($file=='.') or ($file=='..'))
continue;

if (is_dir($dir."/".$file))
$dname[]=$file;
else
{
$fname[]=$file;
$fsize[]=filesize($file);
}
}
}

foreach ($dname as $k => $v)
print("<b>$v</b><br />");

for ($i=0; $i<count($fname); $i++)
{
print($fname[$i]);
if ($fsize[$i]<>"0")
print(" (".$fsize[$i]." байт)<br />");
else
print("<br />");
}

close($d);

}

ReadDirectory($_GET["catalog"]);
?>

Размер файла показывает только если файлы находяться со скриптом в одном каталоге. Вниз или вверх не хочет.

Подскажите, почему?

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0
а Вы уверены что $dir."/".$file указывает на точное расположение файла?

echo $dir."/".$file;

посмотрите что вывидет

Выводит путь... правильный.

кхм... а так?

$fsize[]=filesize($dir."\".$file);

А так вообще не работает... Да и должен ли?

Повторю проблему. Код работает правильно. Показывает содержимое любой папки. Но вот размеры файлов показывает только в папке, где лежит сам сценарий.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy