1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
%%
%% %CopyrightBegin%
%%
%% Copyright Ericsson AB 2006-2016. All Rights Reserved.
%%
%% Licensed under the Apache License, Version 2.0 (the "License");
%% you may not use this file except in compliance with the License.
%% You may obtain a copy of the License at
%%
%% http://www.apache.org/licenses/LICENSE-2.0
%%
%% Unless required by applicable law or agreed to in writing, software
%% distributed under the License is distributed on an "AS IS" BASIS,
%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
%% See the License for the specific language governing permissions and
%% limitations under the License.
%%
%% %CopyrightEnd%
%%
%%
%%% Description: Default Callback module for ssh_sftpd
-module(ssh_sftpd_file).
-behaviour(ssh_sftpd_file_api).
%% API
-export([close/2, delete/2, del_dir/2, get_cwd/1, is_dir/2, list_dir/2,
make_dir/2, make_symlink/3, open/3, position/3, read/3,
read_file_info/2, read_link/2, read_link_info/2, rename/3,
write/3, write_file_info/3]).
close(IoDevice, State) ->
{file:close(IoDevice), State}.
delete(Path, State) ->
{file:delete(Path), State}.
del_dir(Path, State) ->
{file:del_dir(Path), State}.
get_cwd(State) ->
{file:get_cwd(), State}.
is_dir(AbsPath, State) ->
{filelib:is_dir(AbsPath), State}.
list_dir(AbsPath, State) ->
{file:list_dir(AbsPath), State}.
make_dir(Dir, State) ->
{file:make_dir(Dir), State}.
make_symlink(Path2, Path, State) ->
{file:make_symlink(Path2, Path), State}.
open(Path, Flags, State) ->
{file:open(Path, Flags), State}.
position(IoDevice, Offs, State) ->
{file:position(IoDevice, Offs), State}.
read(IoDevice, Len, State) ->
{file:read(IoDevice, Len), State}.
read_link(Path, State) ->
{file:read_link(Path), State}.
read_link_info(Path, State) ->
{file:read_link_info(Path), State}.
read_file_info(Path, State) ->
{file:read_file_info(Path), State}.
rename(Path, Path2, State) ->
{file:rename(Path, Path2), State}.
write(IoDevice, Data, State) ->
{file:write(IoDevice, Data), State}.
write_file_info(Path,Info, State) ->
{file:write_file_info(Path, Info), State}.
|