Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
apollo
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openSource
apollo
Commits
991b0b6c
Commit
991b0b6c
authored
Aug 29, 2016
by
Jason Song
Committed by
GitHub
Aug 29, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #391 from nobodyiam/client-windows
add spport for windows local cache dir
parents
ee7148f1
525a2b86
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
ConfigUtil.java
...main/java/com/ctrip/framework/apollo/util/ConfigUtil.java
+10
-2
No files found.
apollo-client/src/main/java/com/ctrip/framework/apollo/util/ConfigUtil.java
View file @
991b0b6c
...
...
@@ -185,8 +185,8 @@ public class ConfigUtil {
}
public
String
getDefaultLocalCacheDir
()
{
//TODO call Framework Foundation to get the default local cache dir
return
String
.
format
(
"/opt/data/%s"
,
getAppId
());
String
cacheRoot
=
isOSWindows
()
?
"C:\\opt\\data\\%s"
:
"/opt/data/%s"
;
return
String
.
format
(
cacheRoot
,
getAppId
());
}
public
boolean
isInLocalMode
()
{
...
...
@@ -198,4 +198,12 @@ public class ConfigUtil {
}
return
false
;
}
public
boolean
isOSWindows
()
{
String
osName
=
System
.
getProperty
(
"os.name"
);
if
(
Strings
.
isNullOrEmpty
(
osName
))
{
return
false
;
}
return
osName
.
startsWith
(
"Windows"
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment