Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
micropython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
card10
micropython
Commits
d5110792
Commit
d5110792
authored
10 years ago
by
Nikita Nazarenko
Committed by
Damien George
10 years ago
Browse files
Options
Downloads
Patches
Plain Diff
unix: add unlink function to os module
parent
4140e19c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
unix/modos.c
+13
-0
13 additions, 0 deletions
unix/modos.c
unix/qstrdefsport.h
+1
-0
1 addition, 0 deletions
unix/qstrdefsport.h
with
14 additions
and
0 deletions
unix/modos.c
+
13
−
0
View file @
d5110792
...
...
@@ -65,9 +65,22 @@ STATIC mp_obj_t mod_os_stat(mp_obj_t path_in) {
}
STATIC
MP_DEFINE_CONST_FUN_OBJ_1
(
mod_os_stat_obj
,
mod_os_stat
);
STATIC
mp_obj_t
mod_os_unlink
(
mp_obj_t
path_in
)
{
mp_uint_t
len
;
const
char
*
path
=
mp_obj_str_get_data
(
path_in
,
&
len
);
int
r
=
unlink
(
path
);
RAISE_ERRNO
(
r
,
errno
);
return
mp_const_none
;
}
STATIC
MP_DEFINE_CONST_FUN_OBJ_1
(
mod_os_unlink_obj
,
mod_os_unlink
);
STATIC
const
mp_map_elem_t
mp_module_os_globals_table
[]
=
{
{
MP_OBJ_NEW_QSTR
(
MP_QSTR___name__
),
MP_OBJ_NEW_QSTR
(
MP_QSTR__os
)
},
{
MP_OBJ_NEW_QSTR
(
MP_QSTR_stat
),
(
mp_obj_t
)
&
mod_os_stat_obj
},
{
MP_OBJ_NEW_QSTR
(
MP_QSTR_unlink
),(
mp_obj_t
)
&
mod_os_unlink_obj
},
};
STATIC
MP_DEFINE_CONST_DICT
(
mp_module_os_globals
,
mp_module_os_globals_table
);
...
...
This diff is collapsed.
Click to expand it.
unix/qstrdefsport.h
+
1
−
0
View file @
d5110792
...
...
@@ -36,6 +36,7 @@ Q(flush)
Q
(
_os
)
Q
(
stat
)
Q
(
unlink
)
Q
(
ffi
)
Q
(
ffimod
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment