vb6parse 1.0.1

vb6parse is a library for parsing and analyzing VB6 code, from projects, to controls, to modules, and forms.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Filesystem operation statements.
//!
//! This module contains parsers for VB6 statements that manipulate the filesystem:
//! - Directory navigation (`ChDir`, `ChDrive`)
//! - Directory management (`MkDir`, `RmDir`)
//! - File attributes (`SetAttr`)

pub(crate) mod ch_dir;
pub(crate) mod ch_drive;
pub(crate) mod mkdir;
pub(crate) mod rmdir;
pub(crate) mod setattr;