npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@testcomplete/filesystemutil

v0.1.3

Published

A file system interface to let scripts working with TestComplete & NodeJS at the same time

Downloads

6

Readme

TestComplete - FileSystemUtil

A very basic file system interface to let scripts working with TestComplete & NodeJS at the same time.

  • Version : v0.1.3

  • Compatibility : TestComplete - NodeJS

  • Script : ./node_modules/@testcomplete/filesystemutil/FileSystemUtil.js

  • Dependencies :

    • none
  • Test Project : ./test/FileSystemUtil.pjs

Summary

FileSystemUtil Setup for TestComplete

As this library is published on npmjs, you can easily get library with the following command if you have nodejs installed on your computer.

npm install @testcomplete/filesystemutil

Please confer to this documentation to add script in TestComplete :

Script List for the setup :

  • ./node_modules/@testcomplete/filesystemutil/FileSystemUtil.js

@testcomplete/testcompletelibrarysetup

Get Started

First of all, you have to add the script FileSystemUtil.js to your script library in TestComplete.

In any script (TestComplete of NodeJs), require library like this

// Check for NodeJS. If NodeJS, require need relative path
let sPrePath = typeof process !== 'undefined' ? './' : '';

let fs = require(`${sPrePath}FileSystemUtil`);

Read a file read()

The method read( $sFileLocation ) open the file a return it whole content. Encoding used to read the content is the utf-8.

Encoding can not be changed for the moment.

// Read file
let sFileContent = fs().read('/path/to/the/file');

Write a file write()

The method write( $sFileLocation, $sContent) open the file and set content with provided content. It replaces the content of the file (not appended).

// Set new file content
fs().write('/path/to/the/file', 'My New Content String');

Deleting a file delete

The method delete( $sFileLocation ) delete specified file.

// Delete file
fs().delete('/path/to/the/file');

Check if a file exists exists()

The method exists( $sFileLocation ) returns true if the specified file has been found. Else returns false

// Delete file if exists
if(fs().exists('/path/to/the/file')){
    fs().delete('/path/to/the/file');
}