summaryrefslogtreecommitdiff
path: root/help/cleaner_help.sce
blob: 6ebe58d2f4e76f7e80ee5fb447e2ca5c66478386 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
help_dir = get_absolute_file_path('cleaner_help.sce');

// Cleaning en_US directory
if isdir(help_dir + "/en_US") then
    xmlfiles = findfiles(help_dir + "/en_US/", "*.xml");
    if ~isempty(xmlfiles) then
        deletefile(help_dir+ "/en_US/" + xmlfiles);
    end
    rmdir(help_dir + "/en_US/scilab_en_US_help", "s");
end

// Cleaning the jar files
if isdir(root_tlbx + "/jar/") then
   rmdir(root_tlbx + "/jar","s");
end

clear help_dir xmlfiles ;