View Single Post
ישן 16-10-08, 11:34   # 6
SDF
חבר בקהילה
 
מיני פרופיל
תאריך הצטרפות: Sep 2006
מיקום: Negev
הודעות: 270

SDF לא מחובר  

אם אתה מביא את הpath המלא, אין צורך בנקודה בהתחלה.

תרא דוגמא:
(ב CLI)
קוד:
SDF@sigma:~> pwd
/usr/home/SDF
SDF@sigma:~> php
<?php
mkdir("test_mkdir");
?>
SDF@sigma:~> ls -al tes
test*       test.c      test.core   test.cpp    test_mkdir/
SDF@sigma:~> rm -rf test_mkdir/
SDF@sigma:~> php
<?php
mkdir("/usr/home/SDF/test_mkdir");
?>
SDF@sigma:~> ls test
test*       test.c      test.core   test.cpp    test_mkdir/
SDF@sigma:~> rm -rf test_mkdir/
__________________
FreeBSD, a *nix operating system
  Reply With Quote