Download the PHP package jiny/filesystem without Composer

On this page you can find all versions of the php package jiny/filesystem. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package filesystem

JINY filesystem

운영체제 확인

php 슈퍼상수 DIRECTORY_SEPARATOR를 이용한, OS를 확인합니다.

반환값으로 windows 또는 linux 문자열을 출력합니다.

디렉토리

디렉토리와 관련된 메소드를 지원합니다.

isDir

입력된 디렉토리의 존재를 확인합니다.

입력된 경로를 조사합니다. 존재하지 않는 디렉토리 경로일 경우 새롭게 생성을 합니다.

디렉토리 생성

디렉토리를 생성할 수 있습니다.

입력한 경로의 디렉토리를 생성합니다.

디렉토리의 존재를 미리 확인후에, 없으면 새로운 디렉토리를 생성합니다.

입력된 서브 디렉토리를 같이 생성을 합니다.

경로

경로처리와 관련된 메소드를 지원합니다.

current

현재의 경로를 출력합니다.

current는 getcwd()의 alias 입니다. php의 내부 getcwd()의 결과값을 반환합니다.

경로추출

입력된 경로에서 디렉토리 부분만을 추출합니다.

기본 경로

입력한 경로에서 기본 경로를 제외한 상대 경로를 출력합니다.

경로 파일

경로에서 주어진 파일을 추출합니다.

경로 파일명

입력된 경로에서 파일명을 추출합니다.

경로 파일 확장자

입력된 경로에서 파일의 확장자를 추출합니다.


지니 파일처리 라이브러리는 싱글턴방식의 클래스로 구성되어 있습니다.

인스턴스 얻기

먼저 객체의 인스턴스를 얻어 매소드를 호출할 수 있습니다. 기본적으로 클래스의 인스턴스를 얻기 위해서는 new를 사용을 해야 하지만, 매번 호출시 중복 생성되는 인스턴스 메모리를 방지하기 위해서 싱글턴방식으로 제작이 되었습니다.

파일시스템의 인스턴스를 얻는 방법은

와 같이 정적 팩토리 메소드를 호출하는 것입니다.

path($path)

path_real($path)

path_add($base, $path)

is_dir($path)

mkdir($path, $mode=777)

mkdir_sub($path, $mode=777)

rmdir($path)

rmdir_all($path)

rename($old, $new)

scandir($path)

delete($path)

file_extension($path)

file_name($path)

symlink($src, $dst)

read($filename)

read_lines($filename)

save($filename, $content, $mode="w")

copy($src, $dst)

isUpadate($filename)


All versions of filesystem with dependencies

PHP Build Version
Package Version
Requires php Version >= 7.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package jiny/filesystem contains the following files

Loading the files please wait ....