Chapters
Other Resources
- Jaxer FAQ
Still have questions? - Jaxer API Docs
Browse through our online API documentation.
| Jaxer Update Available. |
Jaxer 1.0 RC B is now available at the Download Page. This release has many new features and updated APIs. Jaxer 1.0 RC B API docs: Available inside Aptana Studio after you run the update. Additional Info: Jaxer 0.9 Beta to Jaxer 1.0 RC Migration Guide. |
Jaxer provides a number of simple methods for easy access to folders on the filesystem. This section provides an overview of those methods.
We can check if a folder exists by using the Jaxer.Dir.exists() method. This returns a boolean value predicated on whether the provided folder path exists on the filesystem.
We can use the Jaxer.Dir.grep() method to get a list of file objects that matched a provided pattern:
The above example would return an array containing all the html files contained in the current folder. Navigating the filesystem contains a more in depth review of this functionality.